/* 予約システム共通スタイル */

/* ステップ表示切替 */
.step-content { display: none; }
.step-content.active { display: block; animation: fadeIn 0.3s ease-in; }

/* フェードインアニメーション */
.fade-in { 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;
}

/* スロットボタン（新版） */
.slot-btn { transition: all 0.15s ease; }
.slot-btn:hover { transform: translateY(-1px); }

/* ローディングスピナー */
.loading-spinner {
    border: 3px solid #e5e7eb;
    border-top: 3px solid #14b8a6;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }
