.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.875rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.step.active .step-label {
    color: #007bff;
    font-weight: bold;
}

.step.completed .step-icon {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.service-type-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-type-card:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-type-card.selected {
    border-color: #007bff;
    border-width: 2px;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Fuel type styling */
.service-type-card.fuel-diesel {
    border-left: 4px solid #6c757d;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-type-card.fuel-diesel:hover,
.service-type-card.fuel-diesel.selected {
    border-left-color: #495057;
    border-color: #495057;
}

.service-type-card.fuel-petrol {
    border-left: 4px solid #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.service-type-card.fuel-petrol:hover,
.service-type-card.fuel-petrol.selected {
    border-left-color: #1e7e34;
    border-color: #1e7e34;
}

.service-type-card.fuel-electric {
    border-left: 4px solid #007bff;
    background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
}

.service-type-card.fuel-electric:hover,
.service-type-card.fuel-electric.selected {
    border-left-color: #0056b3;
    border-color: #0056b3;
}

.service-type-card.fuel-hybrid {
    border-left: 4px solid #fd7e14;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
}

.service-type-card.fuel-hybrid:hover,
.service-type-card.fuel-hybrid.selected {
    border-left-color: #e55a00;
    border-color: #e55a00;
}

.service-type-card.fuel-general {
    border-left: 4px solid #ffc107;
    background: linear-gradient(135deg, #fffef7 0%, #fff3cd 100%);
}

.service-type-card.fuel-general:hover,
.service-type-card.fuel-general.selected {
    border-left-color: #e0a800;
    border-color: #e0a800;
}

/* Fuel type badge */
.fuel-type-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.fuel-type-badge.diesel {
    background-color: #6c757d;
    color: white;
}

.fuel-type-badge.petrol {
    background-color: #28a745;
    color: white;
}

.fuel-type-badge.electric {
    background-color: #007bff;
    color: white;
}

.fuel-type-badge.hybrid {
    background-color: #fd7e14;
    color: white;
}

.fuel-type-badge.general {
    background-color: #ffc107;
    color: #212529;
}

/* Fuel type icons */
.fuel-type-icon {
    margin-right: 4px;
    font-size: 0.8rem;
}

.fuel-type-icon.diesel::before {
    content: "⛽";
}

.fuel-type-icon.petrol::before {
    content: "⛽";
}

.fuel-type-icon.electric::before {
    content: "🔌";
}

.fuel-type-icon.hybrid::before {
    content: "🔋";
}

.fuel-type-icon.general::before {
    content: "🔧";
}
.time-slots-grid, .collection-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}
.time-slot-btn, .collection-time-btn {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.time-slot-btn:hover, .collection-time-btn:hover {
    background-color: #f8f9fa;
}
.time-slot-btn.selected, .collection-time-btn.selected {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}

/* Collection time container styling */
#collectionTimeContainer {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin-top: 20px;
}
#collectionTimeContainer h5 {
    color: #28a745;
    margin-bottom: 15px;
}

/* Next day button styling */
.next-day-btn {
    background-color: #6c757d;
    color: white;
    font-weight: bold;
    border-color: #5a6268;
    grid-column: 1 / -1; /* Make it span the full width */
    margin-top: 10px;
}
.next-day-btn:hover {
    background-color: #5a6268;
    color: white;
}
.next-day-btn.selected {
    background-color: #28a745;
    border-color: #28a745;
}

/* Full-width alert styling */
.alert-container {
    grid-column: 1 / -1; /* Make it span the full width of the grid */
    width: 100%;
}
.full-width {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.dealership-card {
    cursor: pointer;
    transition: all 0.3s ease;
}
.dealership-card:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.dealership-card.selected {
    border-color: #007bff;
    border-width: 2px;
    background-color: #f8f9fa;
}

/* No time slots available styling */
.no-slots-container {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 1.5rem 0;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
}

.no-slots-container:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.no-slots-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.no-slots-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.no-slots-message {
    color: #7f8c8d;
    font-size: 1rem;
    max-width: 80%;
    margin: 0 auto;
}
