﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2e3b4e;
    color: #333;
}

.header {
    background-color: #d3d3d3;
    padding: 10px 20px;
    text-align: center;
}

    .header a {
        color: #333;
        text-decoration: none;
        margin: 0 15px;
        font-size: 14px;
    }

        .header a:hover {
            text-decoration: underline;
        }

.logo {
    position: relative;
    top: 20px;
    left: 20px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

    .logo span {
        color: red;
    }

.main-container {
    background-color: white;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.section {
    margin-bottom: 20px;
}

    .section h2 {
        font-size: 18px;
        color: #333;
        margin-bottom: 10px;
    }

.search-box textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
    font-size: 14px;
}

.search-box .buttons {
    margin-top: 10px;
    text-align: left;
}

    .search-box .buttons a {
        color: #007bff;
        text-decoration: none;
        margin-right: 10px;
    }

    .search-box .buttons button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
    }

.search-box .Selection {
    background-color: antiquewhite;
    border: crimson;
    padding: 10px 20px;
}

.updates, .submit-data {
    line-height: 1.6;
}

    .updates ul, .submit-data ul {
        list-style: none;
        padding: 0;
    }

    .updates li, .submit-data li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
    }

        .updates li:before, .submit-data li:before {
            content: "✔";
            color: #007bff;
            position: absolute;
            left: 0;
        }

.reference {
    font-style: italic;
}

    .reference a {
        color: #007bff;
        text-decoration: none;
    }

.footer {
    background-color: #2e3b4e;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
