/**
 * 勤怠管理システム - カスタムスタイル
 *
 * Bootstrap 5.3 拡張
 * モバイルファースト・レスポンシブデザイン
 */

/* ==============================================
   CSS変数（カラースキーム）
   ============================================== */
:root {
    /* プライマリカラー（ビジネス向けブルー） */
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #dbeafe;
    --primary-dark: #1e40af;

    /* セカンダリカラー */
    --secondary-color: #64748b;
    --secondary-hover: #475569;
    --secondary-light: #f1f5f9;

    /* アクセントカラー */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;

    /* 背景色 */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;

    /* テキスト色 */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;

    /* ボーダー */
    --border-color: #e2e8f0;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;

    /* シャドウ */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* サイドバー */
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 70px;
    --sidebar-bg: #1e293b;
    --sidebar-text: #e2e8f0;
    --sidebar-hover: #334155;
    --sidebar-active: var(--primary-color);

    /* トランジション */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

/* ==============================================
   ベーススタイル
   ============================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* フォーカススタイル（アクセシビリティ） */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* スキップリンク */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
}

.skip-link:focus {
    top: 0;
}

/* ==============================================
   ローディングオーバーレイ
   ============================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    text-align: center;
}

/* ==============================================
   ナビゲーションバー（従業員用）
   ============================================== */
.navbar {
    padding: 0.75rem 0;
    transition: var(--transition-normal);
}

.navbar-brand {
    font-size: 1.25rem;
}

.nav-link {
    padding: 0.5rem 1rem !important;
    color: var(--text-secondary);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* ドロップダウンアニメーション */
.dropdown-menu-animate {
    animation: dropdownFadeIn 0.2s ease;
}

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

/* ユーザーアバター */
.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
}

.user-avatar-lg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

/* 通知バッジ */
.notification-badge {
    font-size: 0.625rem;
    padding: 0.25rem 0.4rem;
}

.notification-dropdown {
    border: none;
    box-shadow: var(--shadow-lg);
}

/* ==============================================
   管理者サイドバー
   ============================================== */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    z-index: 1030;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal);
}

/* サイドバーヘッダー */
.sidebar-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.sidebar-brand:hover {
    color: white;
}

.sidebar-brand i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--sidebar-text);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* ユーザー情報 */
.sidebar-user {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* サイドバーナビゲーション */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.sidebar-nav .nav-item {
    margin: 0.125rem 0.75rem;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem !important;
    color: var(--sidebar-text);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.sidebar-nav .nav-link:hover {
    background: var(--sidebar-hover);
    color: white;
}

.sidebar-nav .nav-link.active {
    background: var(--sidebar-active);
    color: white;
}

.sidebar-nav .nav-icon {
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

.sidebar-nav .nav-link.active .nav-icon {
    opacity: 1;
}

/* セクション区切り */
.nav-divider {
    padding: 1rem 1rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* サイドバーフッター */
.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-footer-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    color: var(--sidebar-text);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.sidebar-footer-link:hover {
    background: var(--sidebar-hover);
    color: white;
}

.sidebar-footer-link.text-danger:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* サイドバーオーバーレイ */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1025;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* モバイルヘッダー */
.admin-mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: white;
    box-shadow: var(--shadow);
    z-index: 1020;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-primary);
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-title {
    font-weight: 600;
    font-size: 1rem;
}

/* 管理者メインコンテンツ */
.admin-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    padding: 1.5rem;
    transition: margin var(--transition-normal);
}

/* レスポンシブ */
@media (max-width: 991.98px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.active {
        transform: translateX(0);
    }

    .admin-content {
        margin-left: 0;
        padding-top: calc(56px + 1.5rem);
    }

    .admin-sidebar ~ .footer {
        margin-left: 0;
    }
}

/* ==============================================
   カード型レイアウト
   ============================================== */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    font-weight: 600;
}

.card-body {
    padding: 1.25rem;
}

.card-footer {
    background: transparent;
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
}

/* ステータスカード */
.status-card {
    border-left: 4px solid var(--primary-color);
}

.status-card.success {
    border-left-color: var(--success-color);
}

.status-card.warning {
    border-left-color: var(--warning-color);
}

.status-card.danger {
    border-left-color: var(--danger-color);
}

.status-card.info {
    border-left-color: var(--info-color);
}

/* 統計カード */
.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.stat-card .stat-icon.primary {
    background: var(--primary-light);
    color: var(--primary-color);
}

.stat-card .stat-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.stat-card .stat-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.stat-card .stat-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ==============================================
   打刻ボタン
   ============================================== */
.punch-container {
    text-align: center;
    padding: 2rem;
}

.punch-time-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    margin-bottom: 0.5rem;
}

.punch-date-display {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.punch-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.punch-btn {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: none;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.punch-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.punch-btn:active::before {
    width: 200%;
    height: 200%;
}

.punch-btn i {
    font-size: 2rem;
}

/* 出勤ボタン */
.punch-btn-in {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.punch-btn-in:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
}

.punch-btn-in:active {
    transform: translateY(-1px);
}

/* 退勤ボタン */
.punch-btn-out {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    color: white;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35);
}

.punch-btn-out:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.45);
}

.punch-btn-out:active {
    transform: translateY(-1px);
}

/* 打刻済み状態 */
.punch-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* 打刻ステータス表示 */
.punch-status {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
}

.punch-status-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.punch-status-item:last-child {
    border-bottom: none;
}

/* レスポンシブ打刻ボタン */
@media (max-width: 575.98px) {
    .punch-btn {
        width: 130px;
        height: 130px;
        font-size: 1rem;
    }

    .punch-btn i {
        font-size: 1.5rem;
    }

    .punch-time-display {
        font-size: 2.5rem;
    }

    .punch-buttons {
        gap: 1rem;
    }
}

/* ==============================================
   フォーム
   ============================================== */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.625rem 0.875rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

/* フローティングラベル拡張 */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
}

/* ==============================================
   ボタン
   ============================================== */
.btn {
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* アイコンボタン */
.btn-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ==============================================
   テーブル
   ============================================== */
.table {
    margin-bottom: 0;
}

.table thead th {
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.table tbody td {
    vertical-align: middle;
    color: var(--text-secondary);
}

.table-hover tbody tr:hover {
    background-color: var(--primary-light);
}

/* レスポンシブテーブル */
.table-responsive {
    border-radius: var(--border-radius);
}

/* ==============================================
   バッジ
   ============================================== */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: var(--border-radius);
}

/* ステータスバッジ */
.badge-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.badge-status.approved {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.badge-status.pending {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.badge-status.rejected {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

/* ==============================================
   アラート・トースト
   ============================================== */
.alert {
    border: none;
    border-radius: var(--border-radius);
    border-left: 4px solid;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-left-color: var(--success-color);
    color: #065f46;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border-left-color: var(--danger-color);
    color: #991b1b;
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-left-color: var(--warning-color);
    color: #92400e;
}

.alert-info {
    background-color: rgba(6, 182, 212, 0.1);
    border-left-color: var(--info-color);
    color: #155e75;
}

/* トースト */
.toast {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ==============================================
   モーダル
   ============================================== */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
}

/* ==============================================
   ログインページ
   ============================================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1rem;
}

.login-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo i {
    font-size: 3rem;
    color: var(--primary-color);
}

.login-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.75rem;
}

/* ==============================================
   ページネーション
   ============================================== */
.pagination {
    gap: 0.25rem;
}

.page-link {
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    padding: 0.5rem 0.875rem;
}

.page-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
}

/* ==============================================
   フッター
   ============================================== */
.footer {
    background: white;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.admin-sidebar ~ .footer {
    margin-left: var(--sidebar-width);
    transition: margin var(--transition-normal);
}

/* ==============================================
   ユーティリティ
   ============================================== */
/* テキスト切り詰め */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.3s ease;
}

.animate-slide-up {
    animation: slideUp 0.3s ease;
}

/* ==============================================
   印刷スタイル
   ============================================== */
@media print {
    .admin-sidebar,
    .navbar,
    .no-print {
        display: none !important;
    }

    .admin-content,
    .footer {
        margin-left: 0 !important;
    }

    body {
        background: white;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ==============================================
   会議室予約 タイムライン
   ============================================== */
.timeline-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px;
}

.timeline-grid {
    display: inline-block;
    min-width: 100%;
}

.timeline-header-row {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 4px;
    margin-bottom: 0;
}

.timeline-room-label-header {
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
}

.timeline-hour-label {
    text-align: left;
    font-size: 0.7rem;
    color: #6c757d;
    font-weight: 600;
    border-left: 1px solid #dee2e6;
    padding-left: 4px;
}

.timeline-room-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    min-height: 44px;
}

.timeline-room-row:last-child {
    border-bottom: none;
}

.timeline-room-label {
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
    padding: 8px 8px 8px 0;
    white-space: nowrap;
}

.timeline-track {
    height: 36px;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.timeline-grid-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e9ecef;
}

.timeline-block {
    position: absolute;
    top: 3px;
    bottom: 3px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s, transform 0.1s;
    z-index: 1;
    opacity: 0.85;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.timeline-block:hover {
    opacity: 1;
    transform: scaleY(1.1);
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.timeline-block-text {
    font-size: 0.65rem;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.timeline-legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* タイムライン レスポンシブ */
@media (max-width: 768px) {
    .timeline-room-label {
        width: 80px;
        min-width: 80px;
        font-size: 0.7rem;
    }

    .timeline-room-label-header {
        width: 80px;
        min-width: 80px;
    }
}
