.panzers-time-slot-selector {
    margin: 20px 0 30px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.panzers-time-slot-selector h4 {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.panzers-time-slot-selector .required {
    color: #e2401c;
    font-weight: 700;
}

.panzers-time-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panzers-time-slot-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.panzers-time-slot-option:hover {
    border-color: #999;
    background: #fafafa;
}

.panzers-time-slot-option input[type="radio"] {
    margin: 0 10px 0 0;
    cursor: pointer;
}

.panzers-time-slot-option input[type="radio"]:checked + .panzers-time-slot-label {
    font-weight: 600;
    color: #333;
}

.panzers-time-slot-option:has(input[type="radio"]:checked) {
    border-color: #0e4f46;
    background: #f0f4f7;
}

.panzers-time-slot-label {
    flex: 1;
    font-size: 15px;
    color: #555;
    cursor: pointer;
}

.panzers-time-slot-option input[type="radio"]:checked {
    accent-color: #0e4f46;
}

/* Cart and Order display */
.panzers-time-slot-order {
    margin: 8px 0;
    padding: 8px 12px;
    background: #f9f9f9;
    border-left: 3px solid #2c3e50;
    font-size: 14px;
}

.panzers-time-slot-order strong {
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .panzers-time-slot-selector {
        padding: 15px;
    }
    
    .panzers-time-slot-option {
        padding: 10px 12px;
    }
}
