body,
html {
    height: 100%;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/*.main {
    height:100vh;
    background-image: url("/images/Background.jpg");
    -background-size: auto;
    background-position: center;
    background-repeat: repeat-y;
    background-attachment: fixed;
}*/

.main {
    min-height: 100vh; /* Ensures it covers at least the full viewport height */
    background-image: url("/images/Background.jpg");
    background-size: cover; /* Ensures it scales properly */
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Keeps the background in place */
}


.heading {
    color: white;
    font-size: 80px;
    font-weight: 700;
}

.left-div {
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-left: 50px;
}

.schedule-btn {
    margin-top: 45px;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 22px;
    border-radius: 3px;
    padding: 7px 50px 7px 12px;
    background-color: #27784f;
}

.right-div {
    -display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    padding-top: 250px;
}

.form-container {

    padding: 20px;
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    max-width: 750px; 
}

.form-container label {
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 7px;
}

.form-container input {
    border: 1px solid black;
}

.submit-btn {
    margin-top: 20px;
    border: none;
    color: white !important;
    font-weight: 300;
    font-size: 15px;
    border-radius: 3px;
    background-color: black !important;
}
.schedule-result b {
    font-size: 18px
}

.schedule-result span {
    font-size: 17px
}
.main .header-title {
    font-size: 22px !important;
}
.main input.form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: none !important;
}
.schedule-result {
    display: flex;
    flex-wrap: wrap;
}


    .schedule-result .col-md-6 {
        text-align: left;
        font-size: 18px; /* Increase value size */
        -font-weight: bolder; /* Make values stand out */
        color: #333; /* Darker color for better readability */
    }

.search-container {
    position: relative;
    width: 100%;
    display: inline-block;
}

#address {
    width: 100%;
    padding-right: 35px; /* Space for the clear icon */
    height: 40px;
}

.clear-icon {
    position: absolute;
    right: 10px; /* Position inside input */
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 15px;
    color: #888;
    display: none; /* Hidden until text is entered */
}

    .clear-icon:hover {
        color: #000;
    }

@media (max-width: 576px) {
    .schedule-result .col-md-4, .schedule-result .col-md-8 {
        width: 100%; /* Stack elements on small screens */
        text-align: left;
    }
}
@media only screen and (max-width: 575px) {
    .left-div {
        padding-top: 50px !important;
        padding-left: unset;
    }
    .left-div h1{
        font-size:48px
    }
    .schedule-result b{
        font-size:20px
    }
    .schedule-result span {
        font-size: 18px
    }

    
}
