/* OID: HOME-PAGE-001 | Home Page Base Styling */
body{

    font-family: Arial, sans-serif;

    background:#f2f2f2;

    margin:0;

    padding:0;

}

/* OID: HOME-FORM-001 | Legacy Container/Form Styling */
.container{

    width:90%;

    max-width:900px;

    margin:30px auto;

    background:white;

    padding:25px;

    border-radius:10px;

    box-shadow:0px 0px 10px rgba(0,0,0,0.2);

}

h1{

    text-align:center;

}

h3{

    text-align:center;

    color:green;

}

label{

    display:block;

    margin-top:15px;

    margin-bottom:5px;

    font-weight:bold;

}

input[type=text]{

    width:100%;

    padding:10px;

    box-sizing:border-box;

}

/* OID: HOME-FIELD-003 | Mobile Number Field Layout */
.mobile-row{

    display:flex;

    gap:10px;

}

.mobile-row select{

    width:120px;

}

.mobile-row input{

    flex:1;

}

/* OID: MAP-SECTION-001 | Location Field Layout */
.location-row{

    display:flex;

    gap:10px;

}

.location-row input{

    flex:1;

}

button{

    padding:10px 15px;

    cursor:pointer;

}

.radio-group{

    margin-top:10px;

}

/* OID: HOME-BUTTON-001 | Book Now Button */
.submit-btn{

    width:100%;

    margin-top:20px;

    background:green;

    color:white;

    border:none;

    font-size:18px;

    padding:15px;

}

footer{

    text-align:center;

    margin-top:20px;

    padding:15px;

    background:black;

    color:white;

}
#pickup_suggestions,
#drop_suggestions{

    border:1px solid #ccc;

    background:white;

    max-height:200px;

    overflow-y:auto;

}

.suggestion{

    padding:10px;

    cursor:pointer;

}

.suggestion:hover{

    background:#f0f0f0;

}
/* OID: MAP-SEARCH-001 | Mapbox Suggestions Styling */
/* Mapbox Suggestions Styling */
.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    background: white;
    transition: background 0.2s ease;
}

.suggestion-item:hover {
    background: #f0f4f8;
}

.suggestion-item .main-text {
    font-weight: 500;
    color: #333;
}

.suggestion-item .sub-text {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.suggestions-container {
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.location-input-wrapper {
    position: relative;
}

.location-input-wrapper input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.location-input-wrapper input:focus {
    border-color: #4CAF50;
    outline: none;
}

.location-input-wrapper input.selected {
    border-color: #4CAF50;
    background-color: #f0fff4;
}

/* Button styles */
.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
