/* ラグビー試合結果レポーター モダンスタイル */

/* リセット・基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #060606;
    background: #ffffff;
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: -0.025em;
}

/* ヘッダー */
.header {
    background: linear-gradient(135deg, #A00000 0%, #8B0000 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.nav-button {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-button:hover::before {
    left: 100%;
}

.nav-button:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.4);
}

/* メインコンテナ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2a2a2a;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #A00000, #8B0000);
    border-radius: 2px;
    transform: scaleX(0);
    animation: titleUnderline 0.8s ease-out 0.5s forwards;
}

@keyframes titleUnderline {
    to { transform: scaleX(1); }
}

/* ボタン */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
    text-align: center;
    justify-content: center;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.button:hover::before {
    left: 100%;
}

.button-primary {
    background: linear-gradient(135deg, #A00000 0%, #8B0000 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(160, 0, 0, 0.3);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(160, 0, 0, 0.4);
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
}

.button-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(160, 0, 0, 0.3);
}

.button-secondary {
    background: linear-gradient(135deg, #2a2a2a 0%, #060606 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(42, 42, 42, 0.3);
}

.button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 42, 42, 0.4);
    background: linear-gradient(135deg, #060606 0%, #1a1a1a 100%);
}

.button-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.button-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.button-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 10px;
}

/* 試合カード */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.match-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 42, 42, 0.1);
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.match-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #A00000;
    margin-bottom: 0.5rem;
}

.match-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.match-badge.junior {
    background: #f59e0b;
}

.match-info {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.match-info p {
    margin-bottom: 0.25rem;
}

.match-teams {
    font-weight: 600;
    color: #374151;
    margin: 0.5rem 0;
}

.match-score {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.score-display {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.score-win {
    color: #059669;
}

.score-lose {
    color: #dc2626;
}

.score-draw {
    color: #6b7280;
}

.half-scores {
    font-size: 0.8rem;
    color: #6b7280;
}

.match-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.match-status {
    font-weight: 600;
    font-size: 0.9rem;
}

.status-completed {
    color: #059669;
}

.status-scheduled {
    color: #f59e0b;
}

/* フォーム */
.form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(42, 42, 42, 0.1);
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.required {
    color: #ef4444;
}

.form-input {
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #A00000;
    box-shadow: 0 0 0 3px rgba(160, 0, 0, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.checkbox {
    width: 1.2rem;
    height: 1.2rem;
}

/* 条件付き表示 */
.conditional-field {
    display: none;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
}

.conditional-field.show {
    display: block;
}

/* アラート・メッセージ */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* ローディング */
.loading {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 空の状態 */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.empty-state h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #374151;
}

/* カレンダー */
.calendar-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(42, 42, 42, 0.1);
}

.calendar-controls h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2a2a2a;
    min-width: 250px;
    text-align: center;
    letter-spacing: -0.5px;
}

.calendar-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 
                0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 3rem;
    border: 1px solid rgba(42, 42, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #A00000, #8B0000, transparent);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 2px;
    border-radius: 16px;
    overflow: hidden;
}

.calendar-header {
    background: linear-gradient(135deg, #A00000, #8B0000);
    color: white;
    padding: 1.25rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 2px;
}

.calendar-day {
    background: white;
    min-height: 120px;
    padding: 0.75rem;
    position: relative;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.calendar-day:hover {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.calendar-day.other-month {
    color: #9ca3af;
    background: rgba(248, 250, 252, 0.5);
}

.calendar-day.other-month:hover {
    background: rgba(248, 250, 252, 0.8);
}

.calendar-day.today {
    background: linear-gradient(135deg, #ffe6e6, #ffcccc);
    border: 2px solid #A00000;
    box-shadow: 0 0 0 4px rgba(160, 0, 0, 0.1);
}

.calendar-day.today:hover {
    background: linear-gradient(135deg, #ffcccc, #ffb3b3);
    transform: translateY(-3px);
    box-shadow: 0 0 0 4px rgba(160, 0, 0, 0.2), 
                0 12px 30px rgba(160, 0, 0, 0.15);
}

.day-number {
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.calendar-day.other-month .day-number {
    color: #9ca3af;
    font-weight: 500;
}

.match-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.5rem;
}

.match-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.match-icon:hover {
    transform: scale(1.3);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.match-icon.junior {
    background: url('../images/junior-icon.svg') no-repeat center center;
    background-size: contain;
}

.match-icon.junior::after {
    content: none;
}

.match-icon.senior {
    background: url('../images/senior-icon.svg') no-repeat center center;
    background-size: contain;
}

.match-icon.senior::after {
    content: none;
}

.match-icon.completed {
    border: 3px solid #10b981;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 
                0 0 0 2px rgba(16, 185, 129, 0.2);
}

.match-icon.completed:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 
                0 0 0 3px rgba(16, 185, 129, 0.3);
}

/* モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    margin: 3% auto;
    padding: 2.5rem;
    border-radius: 24px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25),
                0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 24px 24px 0 0;
}

.close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: #64748b;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(100, 116, 139, 0.1);
}

.close:hover {
    color: #1e293b;
    background: rgba(100, 116, 139, 0.2);
    transform: scale(1.1);
}

.modal-match-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    position: relative;
}

.modal-match-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.modal-match-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #A00000;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.modal-match-info {
    margin-bottom: 1.5rem;
}

.modal-match-info p {
    margin-bottom: 0.75rem;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

.modal-match-teams {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1.5rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.8));
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
    letter-spacing: -0.25px;
}

.modal-match-score {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.9), rgba(219, 234, 254, 0.9));
    border-radius: 16px;
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
    border: 1px solid rgba(147, 197, 253, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.modal-match-score::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #A00000, transparent);
}

.modal-score-display {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.modal-half-scores {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 0.75rem;
    font-weight: 500;
}

.modal-match-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

/* ユーティリティクラス */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.hidden { display: none; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }

/* 日付モーダル関連のスタイル */
.modal-day-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.modal-day-header h2 {
    color: #1f2937;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-day-actions {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-day-matches h3 {
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.day-matches-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-match-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.day-match-item:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.day-match-item.completed {
    border-left: 4px solid #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.day-match-item.scheduled {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
}

.match-info {
    flex: 1;
    margin-bottom: 1rem;
}

.match-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.match-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.match-teams {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.match-score {
    font-weight: 600;
    color: #059669;
    font-size: 0.875rem;
}

.match-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.modal-day-empty {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
    background: #f9fafb;
    border-radius: 10px;
    border: 2px dashed #d1d5db;
}

.modal-day-empty p {
    margin: 0.5rem 0;
}

/* カレンダー日付にホバー効果追加 */
.calendar-day {
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day:hover {
    background: #f3f4f6;
    transform: scale(1.02);
}

.calendar-day:active {
    transform: scale(0.98);
}

.calendar-day.today:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* 学校区分スイッチのスタイル */
.switch-container {
    display: flex;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    border: 2px solid #e2e8f0;
    width: fit-content;
    transition: all 0.3s ease;
}

.switch-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    color: #64748b;
    background: transparent;
    transition: all 0.3s ease;
    margin: 0;
    user-select: none;
}

.switch-option input[type="radio"] {
    display: none;
}

.switch-option:hover {
    color: #475569;
    background: rgba(255, 255, 255, 0.5);
}

.switch-option input[type="radio"]:checked + .switch-option,
.switch-option:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.switch-option:has(input[type="radio"]:checked):hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.switch-container:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .switch-container {
        width: 100%;
    }
    
    .switch-option {
        flex: 1;
        text-align: center;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
}
.gap-2 { gap: 1rem; }