body {
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background: #0066cc;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
}

.btn-success {
    border-radius: 50px;
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 15px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dee2e6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    font-weight: bold;
}
.step.active {
    background: #0066cc;
}
.step.completed {
    background: #28a745;
}

.hotel-card {
    border-left: 5px solid #ffc107;
    transition: all 0.3s;
}
.hotel-card.selected {
    border-left-color: #28a745;
    background: #f0fff4;
}

.vehicle-card {
    border-left: 5px solid #17a2b8;
    cursor: pointer;
}
.vehicle-card.selected {
    border-left-color: #28a745;
    background: #f0fff4;
}