/* Additional custom styles beyond Tailwind CSS */

.step-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-card, .menu-card, .staff-card {
    cursor: pointer;
    transition: all 0.2s;
}

.store-card:hover, .menu-card:hover, .staff-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.time-slot {
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover:not(.disabled) {
    transform: scale(1.05);
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.time-slot.selected {
    background-color: #0d9488 !important;
    color: white !important;
}
