
  .year-label { 
   font-size: 26px;
    font-weight: bold;
    margin: 30px 0 15px 0px;
    color: #ffffffb8;
    border-left: 4px solid #4CAF50;
    padding-left: 10px;
  }

    input { width: 300px; padding: 8px; }
    #mapModal {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }
    #mapContainer {
        background: #fff;
        width: 80%;
        height: 80%;
        padding: 10px;
        position: relative;
    }
    #map { height: 90%; }
    #confirmBtn {
        display: block;
        margin-top: 5px;
        background: blue;
        color: white;
        padding: 8px;
        border: none;
        cursor: pointer;
        width: 100%;
    }
    .center-marker {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -100%);
        font-size: 28px;
        color: red;
        z-index: 1000;
    }
     #closeBtn {
        position: absolute;
        top: 5px;
        right: 5px;
        background: #ffffff;
        color: white !important;
        border: none;
        padding: 5px 10px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 4px;
        z-index: 1001;
    }


    .form-control:focus {
    color: #ffffff !important;
    background-color: #2a3343 !important;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff !important;
    /* -webkit-appearance: none; */
    nce: none;
    /* appearance: none; */
    background-color: #2a3343 !important;
    background-clip: padding-box;
    border: 0.5px solid #dee2e64d !important;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control::placeholder{
    /* color:#ffff !important; */
    color:#ffffff8f  !important;
}


.hero form .btn-primary {
    color: #000 !important;
    background-color: #4bb3fd !important;
    flex-shrink: 0;
    padding: 0 25px;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-tertiary-bg);
    border: 0.5px solid #262728ad !important;
    border-radius: var(--bs-border-radius);
}

/* Make the calendar icon white */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Make placeholder text white */
input[type="date"]::placeholder {
    color: #fff;       /* White */
    opacity: 1;        /* Ensure it's not transparent */
}

/* Firefox fix for placeholder */
input[type="date"]::-moz-placeholder {
    color: #fff;
    opacity: 1;
}


/* ===== DATE & TIME INPUTS ===== */

/* Make the calendar & clock icons white */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Placeholder color white */
input[type="date"]::placeholder,
input[type="time"]::placeholder {
    color: #fff;
    opacity: 1;
}

/* Firefox placeholder fix */
input[type="date"]::-moz-placeholder,
input[type="time"]::-moz-placeholder {
    color: #fff;
    opacity: 1;
}





