﻿/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333; /* Dark text for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
}

/* Global Styles */
.Maincontainer {
    font-family: Arial, sans-serif;
    font-size: 12px;
    margin: 0;
    width: 900px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: midnightblue;
    text-align: center;
    margin-top: 100px;
    min-height:100vh;
}

.Page-header {
    /*background: rgb(54,96,146);*/
    /*padding: 20px;*/
    text-align: center;
}

.Maincontainer h1 {
    font-size: 25px;
    margin: 0;
    color: rgb(54,96,146);
    text-transform: uppercase;
}
.Maincontainer h2 {
    color: rgb(54, 96, 146);
    font-size: 18px;
}

.apply-button {
    background-color: rgb(54, 96, 146);
    color: #fff;
}

    .apply-button:hover {
        background-color: #0056b3;
        color: #fff;
    }

.form-group {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
    align-items: center;
}

    .form-group label, .Asp-Label {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .form-group input:not([type="button"]):not([type="submit"]):not([type="reset"]),
    .form-group select,
    .form-group textarea {
        unset;
        padding: 10px;
        font-size: 14px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #f9f9f9;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: rgb(54, 96, 146);
            outline: none;
        }

.multi-input-group {
    display: flex;
    gap: 20px;
}

    .multi-input-group input {
        flex: 1;
    }

.multi-Display-group {
    display: flex;
    gap: 20px;
    align-items:center;
    width: 100%; /* Ensures the group takes up the full width of its container */
}

    .multi-Display-group > * {
        flex: 1; /* Make each child take an equal share of the available space */
        min-width: 0; /* Prevent overflow when content is too large */
    }

multi-Display-group-flex {
    display: flex;
    gap: 2px;
    align-items:center;
}


.button-group {
    text-align: center;
    margin-top: 20px;
}


.notes {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Instructional Note Styles */
.instruction-note {
    background-color: #f0f8ff; /* Light blue background */
    color: #333;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-top: 20px;
    border-left: 5px solid rgb(54,96,146); /* Blue left border for emphasis */
    font-size: 14px;
}

    .instruction-note p {
        margin: 0;
        display: flex; /* Flexbox to align bullet with text */
        align-items: center; /* Vertical alignment of bullet and text */
        padding-left: 20px; /* Ensure there is space for the bullet */
    }

.asterics {
    font-weight: 400;
    color: red;
}

.position-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 5px;
}

    .position-actions .asp-button {
        padding: 10px 15px;
        font-size: 14px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

.apply-button {
    background-color: rgb(54, 96, 146);
    color: #fff;
}

    .apply-button:hover {
        background-color: #0056b3;
        color: #fff;
    }
/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .main-header .nav-links {
            flex-direction: column;
            gap: 10px;
        }

    .main-footer {
        font-size: 14px;
    }
}