.map-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    z-index: -1;
}

.map-bg img {
    width: 100%;
}

/* Sidebar Content */
.sidebar-map {
    background-color: rgba(255, 255, 255, 0.9);
    width: 425px;
    min-height: calc(100vh - 60px);
    padding: 30px;
    margin-left: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    margin-bottom: 80px !important;
}
.sidebar-map h5 {
color: #2d87d9;
font-size: 16px;
font-weight: 500;
}
.sidebar-map h1 {
    color: #000;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.sidebar-map form {
    margin-bottom: 30px;
}

.sidebar-map input[type="name"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}




/***************/
     .registration-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 30px auto;
    max-width: 800px;
}
        .form-header {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.section-header {
    color: #3498db;
    margin: 25px 0 15px;
    font-size: 1.2rem;
}
.required-field::after {
    content: " *";
    color: red;
}
.btn-register {
    background-color: #3498db;
    color: white;
    padding: 12px 120px;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 20px;
}
.btn-register:hover {
    background-color: #2980b9;
    color: #fff;
}
.time-inputs {
    display: flex;
    gap: 15px;
}
.time-inputs .form-group {
    flex: 1;
}
 table td {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

table td:last-child {
    text-align: right;
}

.change-dropdown {
    position: relative;
    display: inline-block;
}

.change-link {
    color: #3498db;
    cursor: pointer;
    text-decoration: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown-content a {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.change-dropdown:hover .dropdown-content {
    display: block;
}
.confirmation-select {
    width: 100%;
    padding: 8px 12px;
    border-bottom: 1px solid #ced4da;
    margin-bottom: 10px;
}
select#confirmationMethod {
border: unset;
border-bottom: 1px solid #ced4da;
}
.option-icon {
    margin-right: 8px;
}
        .icon-input-group {
    position: relative;
}
.icon-input-group .form-control {
    padding-left: 40px; /* Space for icon */
}
.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}
.form-control {
border: unset; 
border-bottom: 1px solid #ced4da;
border-radius: unset;
}

svg.svg-inline--fa.fa-car.input-icon, svg.svg-inline--fa.fa-house.input-icon, svg.svg-inline--fa.fa-lock.input-icon {
color: #2d87d9;
}
.icon-input-group .form-control::placeholder, #make::placeholder, input#contactName::placeholder {
color: #2d87d9;
}
input::placeholder {
color: #2d87d9 !important;
}
#map-container {
    /* height: 500px; */
    background: url('your-map-image.png') no-repeat center center;
    background-size: cover;
    position: relative;
    margin-top: 60px;
  }

  .custom-popup {
    position: fixed;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    background-color: rgb(26 26 26 / 80%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    z-index: 999;
    width: 350px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    padding: 40px;
  }

  .custom-popup a {
    color: #0dcaf0;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
  }