/* 메인 스타일 */
:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --sidebar-width: 260px;
    --header-height: 70px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    display: flex;
    min-height: 100vh;
}

/* 사이드바 */
.sidebar {
    width: var(--sidebar-width);
    background: white;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    opacity: 1;
    transition: width 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

/* 사이드바 완전 숨김 상태 */
.sidebar.collapsed {
    width: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    opacity: 0; /* 부드러운 페이드아웃 */
}

.sidebar.collapsed * {
    display: none;
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.sidebar-header .version {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.nav-item i {
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
}

.nav-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-item.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--gray-200);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 12px;
    color: var(--gray-500);
}

.btn-change-password {
    width: 100%;
    padding: 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 8px;
}

.btn-change-password:hover {
    background: var(--gray-100);
    border-color: var(--primary);
}

.btn-logout {
    width: 100%;
    padding: 10px;
    background: var(--gray-100);
    border: none;
    border-radius: 6px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-logout:hover {
    background: var(--gray-200);
}

/* 메인 컨텐츠 */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: calc(100% - var(--sidebar-width));
    transition: all 0.3s ease;
}

/* 사이드바 숨김 시 메인 컨텐츠 전체 너비 */
body:has(.sidebar.collapsed) .main-content {
    margin-left: 0;
    width: 100%;
}

/* 헤더 */
.header {
    height: var(--header-height);
    background: white;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* 사이드바 토글 버튼 (항상 표시) */
.mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.2s;
}

.mobile-nav-btn:hover {
    background: var(--gray-200);
    border-color: var(--primary);
}

.mobile-nav-btn:active {
    transform: scale(0.95);
    background: var(--gray-50);
}

.mobile-nav-btn i {
    font-size: 18px;
    color: var(--gray-700);
}

.header-title {
    flex: 1;
}

.header-title h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.header-subtitle {
    font-size: 13px;
    color: var(--gray-500);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.notification-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    color: white;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
}

.notification-btn i {
    color: white;
    font-size: 18px;
}

.notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.4);
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.notification-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: 360px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    max-height: 500px;
    display: flex;
    flex-direction: column;
}

.notification-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header span {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
}

.notification-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.btn-mark-read,
.btn-mark-all-read {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-mark-read:hover,
.btn-mark-all-read:hover {
    background: var(--gray-100);
}

.notification-list {
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
}

.notification-item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background 0.2s;
}

.notification-item:hover {
    background: var(--gray-50);
}

.notification-item.unread {
    background: #f0f4ff;
}

.notification-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.notification-item-message {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.notification-item-time {
    font-size: 12px;
    color: var(--gray-400);
}

.notification-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--gray-400);
    font-size: 14px;
}

.notification-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.notification-footer:hover {
    background: var(--gray-50);
}

/* 컨텐츠 */
.content {
    flex: 1;
    padding: 32px;
}

/* 대시보드 */
.dashboard {
    max-width: 1400px;
    margin: 0 auto;
}

.welcome-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    padding: 32px;
    color: white;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.welcome-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.welcome-content p {
    font-size: 16px;
    opacity: 0.9;
}

.welcome-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

/* 통계 카드 */
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 항상 3열 고정 */
    gap: 24px !important;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* 아이콘 래퍼 */
.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

/* 배경색 유틸리티 */
.bg-primary-soft {
    background-color: rgba(99, 102, 241, 0.1);
}

.bg-success-soft {
    background-color: rgba(16, 185, 129, 0.1);
}

.bg-warning-soft {
    background-color: rgba(245, 158, 11, 0.1);
}

/* 텍스트 색상 유틸리티 */
.text-primary {
    color: #6366f1;
}

.text-success {
    color: #10b981;
}

.text-warning {
    color: #f59e0b;
}

/* 통계 콘텐츠 */
.stat-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.2;
}

.stat-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 4px 0 0 0;
    font-weight: 500;
}

/* 레거시 스타일 제거 (호환성 유지) */
.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.stat-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.stat-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.stat-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* 섹션 */
.section {
    margin-bottom: 32px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    margin-top: 32px;
}

/* 빠른 접근 */
.quick-access-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* 항상 4열 고정 */
    gap: 20px !important;
}

.quick-access-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--gray-700);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.quick-access-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: var(--primary);
}

.quick-access-card i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.quick-access-card span {
    font-size: 14px;
    font-weight: 500;
}

/* 정보 카드 */
.info-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.info-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 600;
}

/* 공지사항 리스트 */
.announcement-list {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.announcement-item {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background 0.2s;
}

.announcement-item:hover {
    background: var(--gray-50);
}

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

.announcement-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.announcement-important {
    color: var(--warning);
}

.announcement-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    flex: 1;
}

.announcement-date {
    font-size: 13px;
    color: var(--gray-500);
}

/* 최근 알림 목록 */
.notification-list-box {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.notification-list-box .notification-item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background 0.2s;
}

.notification-list-box .notification-item:hover {
    background: var(--gray-50);
}

.notification-list-box .notification-item:last-child {
    border-bottom: none;
}

.notification-list-box .notification-item.unread {
    background: #f0f4ff;
}

.notification-list-box .notification-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.notification-list-box .notification-item-message {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.notification-list-box .notification-item-time {
    font-size: 12px;
    color: var(--gray-400);
}

.announcement-author {
    font-size: 13px;
    color: var(--gray-600);
}

.empty-state {
    padding: 60px 20px;
    text-align: center;
    color: var(--gray-400);
    font-size: 14px;
}

/* 토스트 알림 */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--success);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.error {
    background: var(--danger);
}

.toast.warning {
    background: var(--warning);
}

.toast.info {
    background: var(--info);
}

/* 관리자 전용 요소 숨김 */
/* 관리자 전용 요소를 확실하게 숨기기 위한 코드 */
body:not(.is-admin) .admin-only {
    display: none !important;
}

/* 일반 직원 전용 요소 숨김 (관리자일 때) */
body.is-admin .user-only {
    display: none !important;
}

/* 🔧 표시될 때는 기본 display 속성 사용 */
body.is-admin .admin-only {
    display: block; /* 기본 표시 */
}

body:not(.is-admin) .user-only {
    display: block; /* 기본 표시 */
}

/* 그리드 레이아웃은 별도로 처리 */
body.is-admin .stats-grid.admin-only,
body:not(.is-admin) .stats-grid.user-only {
    display: grid !important;
}

body.is-admin .quick-access-grid,
body:not(.is-admin) .quick-access-grid {
    display: grid !important;
}

/* 반응형 디자인 */
/* 모바일 반응형 비활성화 - PC 레이아웃 고정 유지 */
/* viewport width=1200 설정으로 아래 미디어쿼리는 적용되지 않음 */

/* ==========================================
   [PC 뷰 수정] 환영 배너 가로 정렬 강제 적용
   ========================================== */
@media (min-width: 992px) {
    .welcome-card {
        flex-direction: row !important;        /* 가로 방향 강제 */
        align-items: center !important;        /* 세로 중앙 정렬 */
        justify-content: space-between !important; /* 양끝 정렬 */
        gap: 0 !important;                     /* 불필요한 간격 제거 */
    }
}

/* PC에서 사이드바 완전 숨김 상태를 자연스럽게 */
.sidebar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.collapsed {
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.2s ease 0.1s,
                box-shadow 0.2s ease;
}

/* 🔧 진짜 모바일 전용: 실제 화면 너비 기반 */
/* viewport는 1200px이지만, 실제 디바이스는 작음 */
@media only screen and (max-width: 768px) and (hover: none) {
    /* hover: none은 터치 기기만 감지 */
    
    /* ==========================================
       [Mobile Fix] 헤더 고정형 레이아웃 안전 패치
       ========================================== */
    
    /* 가로 스크롤 완전 금지 */
    body {
        overflow-x: hidden !important;
        position: relative;
    }
    
    /* 헤더 고정 */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1040 !important; /* 사이드바보다 위 */
    }
    
    /* 메인 컨텐츠: 항상 전체 너비 (사이드바가 밀지 않음) */
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        min-width: 100vw !important; /* 뷰포트 너비 강제 확보 */
        padding-top: calc(var(--header-height) + 16px) !important; /* 헤더 높이 + 여백 */
    }
    
    /* 🎯 모바일 전용: 대시보드 그리드 레이아웃 */
    .stats-grid {
        grid-template-columns: 1fr !important; /* 총 직원, 연차 사용중, 알림 → 세로 배열 */
    }
    
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 빠른 접근 → 2열 */
    }
    
    /* ==========================================
       [Mobile Fix] 사이드바 100% 완벽 숨김 (Pixel Free)
       ========================================== */
    
    /* 사이드바: 오버레이 드로어 (헤더 아래쪽에 위치) */
    .sidebar {
        position: fixed !important;
        top: var(--header-height) !important; /* 헤더 아래부터 시작 */
        left: 0;
        width: var(--sidebar-width) !important;
        height: calc(100vh - var(--header-height)) !important; /* 헤더 높이 제외 */
        z-index: 1038 !important; /* 헤더보다 낮게, 백드롭보다 높게 */
        background: white;
        box-shadow: 2px 0 16px rgba(0, 0, 0, 0.2) !important;
        
        /* 핵심 변경: -100% 사용으로 완전히 숨김 */
        transform: translateX(-100%) !important; 
        
        /* 숨겨졌을 때 클릭도 안 되게 아예 투명인간 취급 */
        visibility: hidden !important;
        
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s !important;
    }
    
    /* 사이드바 열림 상태 */
    .sidebar.open {
        transform: translateX(0) !important; /* 제자리로 */
        visibility: visible !important; /* 눈에 보이게 */
    }
    
    /* collapsed 클래스 무시 - 모바일에서는 항상 translateX로 제어 */
    .sidebar.collapsed {
        width: var(--sidebar-width) !important;
        padding: initial !important;
        overflow: initial !important;
        border: initial !important;
        box-shadow: 2px 0 16px rgba(0, 0, 0, 0.2) !important;
        transform: translateX(-100%) !important; /* 완전히 숨김 */
        visibility: hidden !important; /* 투명인간 취급 */
    }
    
    .sidebar.collapsed * {
        display: initial !important;
    }
    
    /* 백드롭 (오버레이) - 헤더 아래부터 어둡게 */
    .sidebar-backdrop {
        display: none;
        position: fixed;
        top: var(--header-height) !important; /* 헤더 아래부터 어둡게 */
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - var(--header-height)) !important;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1037 !important; /* 사이드바보다 낮게 */
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    /* 백드롭 활성화 */
    .sidebar-backdrop.active {
        display: block !important;
        opacity: 1 !important;
    }
    
    /* 사이드바 열림 시 body 스크롤 잠금 */
    body.sidebar-open {
        overflow: hidden !important;
    }
    
    /* 모바일 네비게이션 버튼 표시 */
    .mobile-nav-btn {
        display: flex !important;
    }
    
    /* 헤더 조정 */
    .header {
        padding: 0 16px;
        z-index: 1000;
    }
}

/*
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    /* 모바일 네비게이션 버튼 표시 */
    .mobile-nav-btn {
        display: flex;
    }
    
    .header {
        padding: 0 16px;
    }
    
    .header-title h2 {
        font-size: 18px;
    }
    
    .header-subtitle {
        font-size: 12px;
    }
    
    .content {
        padding: 16px;
    }
    
    .welcome-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notification-dropdown {
        width: calc(100vw - 32px);
        right: -16px;
    }
    
    /* 모바일에서 테이블 가로 스크롤 활성화 */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .employees-table {
        min-width: 800px;
    }
    
    /* 모바일에서도 PC 레이아웃 유지 */
    body {
        touch-action: manipulation;
        -webkit-text-size-adjust: 100%;
    }
}
*/

/* 480px 미디어쿼리도 비활성화 */
/*
@media (max-width: 480px) {
    .quick-access-grid {
        grid-template-columns: 1fr;
    }
}
*/
