body {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0;
    background-image: url("/img/bg-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: makes the background stay in place during scrolling */
    background-position: center;
    height: 100vh;
    width: 100vw;
}

.wrapper {
    margin-top: 100px;
}

.bg-mint {
    background-color: #7ecbb3;
}

.form-wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 1000px;
}

.service-provider-wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 1000px;
}

label {
    margin-bottom: 0;
}

/* Optional: Reset Chosen's default styles */
.chosen-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* Make chosen container inherit Bootstrap's form control styles */
.chosen-container .chosen-single {
    height: calc(2.25rem + 2px); /* Match Bootstrap input height */
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chosen-container .chosen-single div b {
    border-top-color: #6c757d; /* Bootstrap dark icon color */
}

.chosen-container .chosen-drop {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15); /* Bootstrap-style shadow */
    margin-top: 2px;
}

.chosen-container .chosen-results {
    max-height: 200px;
    overflow-y: auto;
    padding: 0.25rem 0;
}

.chosen-container .chosen-results li {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    color: #495057;
    cursor: pointer;
}

/* Hover and active states */
.chosen-container .chosen-results li:hover,
.chosen-container .chosen-results li.highlighted {
    background-color: #e9ecef; /* Bootstrap light hover */
    color: #212529;
}

/* Placeholder styling to match Bootstrap */
.chosen-container .chosen-single.chosen-default {
    color: #6c757d;
}

/* Disabled state */
.chosen-container.chosen-disabled .chosen-single {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

/* Base styling to mimic Bootstrap's input appearance */
.chosen-container .chosen-single {
    height: calc(2.25rem + 2px); /* Matches Bootstrap input height */
    background-color: #fff;
    border: 1px solid #ced4da; /* Bootstrap border color */
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057; /* Bootstrap input text color */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none; /* Remove Chosen shadow */
    background-image: unset;
}

.chosen-container .chosen-with-drop {
    box-shadow: none; /* Remove Chosen shadow */
    background-image: unset;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    background-image: unset;
    box-shadow: none;
}

/* Style the dropdown arrow to match Bootstrap's look */
.chosen-container .chosen-single div b {
    display: inline-block;
    width: 1em; /* Adjust width for the icon */
    height: 1em; /* Adjust height for the icon */
    background-image: url('/img/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-top: 9px; /* Align vertically */
    margin-left: auto; /* Push icon to the right */
    opacity: 0.7; /* Optional: adjust icon transparency to match Bootstrap */
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
    display: inline-block;
    width: 1em; /* Adjust width for the icon */
    height: 1em; /* Adjust height for the icon */
    background-image: url('/img/chevron-up.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-top: 9px; /* Align vertically */
    margin-left: auto; /* Push icon to the right */
    opacity: 0.7; /* Optional: adjust icon transparency to match Bootstrap */
}

.chosen-container-single .chosen-single abbr {
    position: absolute;
    top: 12px;
    right: 26px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(chosen-sprite.png) -42px 1px no-repeat;
    font-size: 1px;
}

/* Chosen dropdown menu styling */
.chosen-container .chosen-drop {
    border: 1px solid #ced4da; /* Match Bootstrap border */
    border-radius: 0.25rem;
    background-color: #fff;
    box-shadow: none; /* Remove dropdown shadow */
    margin-top: 2px;
    color: #495057; /* Text color */
}

/* Style individual options */
.chosen-container .chosen-results li {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    color: #495057; /* Match Bootstrap text color */
    cursor: pointer;
}

/* Hover and active states for options */
.chosen-container .chosen-results li:hover, .chosen-container .chosen-results li.highlighted {
    background-color: #e9ecef; /* Bootstrap light hover background */
    color: white; /* Dark text color on hover */
}

/* Placeholder text styling */
.chosen-container .chosen-single.chosen-default {
    color: #6c757d; /* Match Bootstrap placeholder color */
}

/* Disabled state */
.chosen-container.chosen-disabled .chosen-single {
    background-color: #e9ecef; /* Disabled background */
    color: #6c757d;
    cursor: not-allowed;
}

/* Focus styling to match Bootstrap's focus on input */
.chosen-container-active .chosen-single {
    border-color: #80bdff; /* Bootstrap blue focus border */
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); /* Bootstrap focus shadow */
}

nav {
    margin-left: -15px;
    margin-right: -15px;
}