body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f8fc;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Logo Styles */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}


.container {
    text-align: center;
    max-width: 800px;
    margin: 50px auto;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

h1 {
    color: #25427C;
    margin-bottom: 10px;
}

h2 {
    color: #445982;
    margin-top: 30px;
    text-align: center;
}

/* Search Form */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    text-align: left;
}

.search-form label {
    font-size: 1.05em;
    color: #333;
    font-weight: 600;
}

.search-form input[type="text"],
.search-form input[type="number"] {
    padding: 12px 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border 0.3s;
}

.search-form input:focus {
    border-color: #25427C;
    outline: none;
}

.search-btn {
    padding: 12px;
    background-color: #25427C;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 25%;
    margin-top: 10px;
}

.search-btn:hover {
    background-color: #193568;
}

/* Result Table */
.result-container {
    margin-top: 25px;
    overflow-x: auto;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.result-table th, .result-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.result-table th {
    background-color: #25427C;
    color: white;
    font-weight: bold;
}

.result-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.result-table tr:hover {
    background-color: #f1f1f1;
}

/* Error Message */
.error-msg {
    background: #ffe0e0;
    color: #a00;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

/* Footer */
.header {
    background-color: #25427C;
    width: 100%;
}

.footer {
    background-color: #25427C;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
}
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px;
}

.custom-select {
    appearance: none;
    width: 100%;
    padding: 10px 14px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath fill='%23000' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 12px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.custom-select:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container img {
    width: 350px;
    animation: fadeSlideIn 1s ease-out forwards;
}

.menu-container h1,
.menu-container p,
.menu-options {
    opacity: 0;
    animation: fadeSlideIn 1s ease-out forwards;
}

.menu-container h1 {
    animation-delay: 0.3s;
}

.menu-container p {
    animation-delay: 0.6s;
}

.menu-options {
    animation-delay: 0.9s;
}



/* Responsive Design */
@media (max-width: 300px) {
    .logo-container img {
    width: 300px;
    animation: fadeSlideIn 1s ease-out forwards;
}
    .search-btn {
        font-size: 0.95em;
        padding: 10px;
    }

    .result-table th, .result-table td {
        padding: 10px;
    }

    .result-table td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .result-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        font-weight: bold;
        text-align: left;
    }

    .result-table tr {
        display: block;
        margin-bottom: 15px;
        border-bottom: 2px solid #ddd;
    }
}
