body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #006699, #0099cc);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #006699;
    position: relative;
    min-height: 100vh;
}

#logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 277px; /* 50% of the original width */
    height: 133.5px; /* 50% of the original height */
    z-index: 1000;
}

@media screen and (max-width: 768px) {
    #logo {
        width: 138.5px; /* Further reduce for smaller screens */
        height: 66.75px;
    }
}

@media screen and (max-width: 480px) {
    #logo {
        width: 83.1px; /* Adjust for very small screens */
        height: 40.05px;
    }
}


.container {
    background-color: rgba(0, 103, 160);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 700px;
    max-width: 800px;
    transition: transform 0.3s ease;
    margin-top: 20px;
}


.section {
    margin-bottom: 5px;
}

h1 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ffffff;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9em;
}

DropDownList {
    width: 720px;
    padding: 10px;
    margin-top: 6px;
    border-radius: 5px;
    border: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    outline: none;
}

input[type=number], input[type=date], input[type=text] {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 5px;
    border: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    color: #006699;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    input[type=number]:focus, input[type=date]:focus, input[type=text]:focus {
        outline: none;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.6);
    }

textarea {   
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 5px;
    border: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    background-color: #F2F2F2;
}

textarea:focus {
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.6);
}

.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 0.9em;
    user-select: none;
    color: white
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #f3f3f3;
}

    .custom-checkbox input:checked ~ .checkmark {
        background-color: #339933;
    }

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

    .custom-checkbox .checkmark:after {
        left: 6px;
        top: 2px;
        width: 6px;
        height: 11px;
        border: #339933;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }


/* Button Styles */
.button_normal {
    width: 100%;
    padding: 10px;
    background-color: #339933;
    color: white;
    border: solid;
    border-width:thin;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s;
}


.button_normal:hover {
    background-color: #005580;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    color:#006699
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 400px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

    /* Tooltip arrow */
    .tooltip .tooltiptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Responsive Design

*/
@media screen and (max-width: 768px) {
    .container {
        width: 90%;
        max-width: none;
    }

    h1 {
        font-size: 1.5em;
    }

    .section h2 {
        font-size: 1em;
    }
}

@media screen and (max-width: 480px) {
    body {
        justify-content: flex-start;
        padding-top: 20px;
    }

    .container {
        margin-top: 20px;
    }

    .section {
        margin-bottom: 15px;
    }

        .section h2 {
            font-size: 0.9em;
        }

    .custom-checkbox {
        font-size: 0.8em;
    }

    .section button {
        font-size: 0.9em;
    }
}


/* Additional styles for Intro Page */
/*.intro-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;*/ /* Adjust width as needed */
/*}


    .intro-container h1 {
        color: #006699;*/ /* Or any color that fits your theme */
        /*margin-bottom: 20px;
    }

    .intro-container p {
        margin-bottom: 30px;
        color: #333;*/ /* Darker text for readability */
    /*}*/

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    }

    .button-container button {
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        background-color: #006699; /* Primary button color */
        color: white;
        cursor: pointer;
        transition: background-color 0.2s;
    }

        .button-container button:hover {
            background-color: #005580; /* Darker shade on hover */
        }

