body {
    background-color: #f8f9fa;
/*    padding: 20px;*/
}

.booking-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    cursor: pointer;
    padding: 15px;
}

.booking-card:hover {
    background-color: #f8f9fa;
}

.search-container {
    position: relative;
    margin-bottom: 15px;
}

.search-container i {
    position: absolute;
    left: 15px;
    top: 12px;
    color: #6c757d;
}

.search-input {
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    height: 45px;
}

.change-btn {
    color: #4169e1;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
}

.confirm-btn {
    background-color: #4169e1;
    border: none;
    width: 100%;
    border-radius: 8px;
    height: 45px;
    font-weight: 500;
    margin-top: 15px;
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
}

.destination-list {
    list-style: none;
    padding-left: 0;
}

.destination-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
}

.destination-item:hover {
    background-color: #f8f9fa;
}

.location-icon {
    color: #6c757d;
    margin-right: 10px;
}