body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1F2A44;
    color: #FFFFFF;
    padding-bottom: 80px; /* Gap from footer */
}

.page {
    padding: 20px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0A3D62;
    padding: 10px 20px;
}

h1 {
    margin: 0;
    font-size: 24px;
}

.notice-bar {
    background-color: #3E92CC;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

.slider {
    width: 100%; /* Full width */
    overflow: hidden;
    position: relative;
}

.mobile-slider,
.desktop-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: auto; /* Original image height */
    max-width: 100%; /* Does not exceed screen */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    position: relative;
}

/* Mobile slider (≤ 600px) */
@media only screen and (max-width: 600px) {
    .mobile-slider .slide {
        width: 100%;
        height: auto;
        max-height: 180px; /* Height limit for small devices */
    }
    .desktop-slider {
        display: none; /* Hide desktop slider */
    }
}

/* Desktop slider (≥ 601px) */
@media only screen and (min-width: 600px) {
    .mobile-slider {
        display: none; /* Hide mobile slider */
    }
    .desktop-slider {
        display: block; /* Show desktop slider */
    }
    .desktop-slider .slide {
        width: 100%;
        height: auto;
        max-height: 400px; /* Height for desktop */
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #EAB543;
    color: #1F2A44;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0A3D62;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #FFFFFF;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #3E92CC;
}

.section {
    margin-top: 20px;
}

h2 {
    color: #EAB543;
}

select, input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #3E92CC;
    border-radius: 5px;
    background-color: #1F2A44;
    color: #FFFFFF;
    box-sizing: border-box; /* सुनिश्चित करें कि padding width में शामिल हो */
}

button {
    background-color: #EAB543;
    color: #1F2A44;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #3E92CC;
    color: #FFFFFF;
}

.submit-btn {
    margin-top: 20px;
    margin-bottom: 20px; /* Gap from footer */
    display: block;
}

.details {
    display: none;
    margin-top: 10px;
}

.box {
    background-color: #0A3D62;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #1F2A44;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

iframe {
    width: 100%;
    height: 300px;
}

footer {
    background-color: #0A3D62;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.contact-box {
    margin-bottom: 10px;
    overflow-wrap: break-word;
    font-size: 14px;
    text-align: center;
}

.footer-menu a {
    color: #EAB543;
    margin: 0 10px;
    text-decoration: none;
}

.small-btn {
    font-size: 12px;
    padding: 5px 10px;
}

.settings-content {
    display: none;
    position: absolute;
    background-color: #0A3D62;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    left: 0;
    top: 100%;
}

.settings-dropdown {
    color: #FFFFFF;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    position: relative;
}

.settings-dropdown:hover {
    background-color: #3E92CC;
}

/* नया CSS: इनपुट फील्ड्स को ठीक करने के लिए */
#loginPage input,
#signupPage input {
    display: block !important;
    pointer-events: auto !important;
    opacity: 1 !important;
}