@charset "utf-8";

/* ===================================
    Modern Board UI - Enhanced Design System
    Version: 2.0
    Features: Glass Morphism, Dark Mode, Animations
====================================== */

/* CSS Variables for Theme System */
:root {
    /* Color Palette */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Neutral Colors */
    --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;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-glass: rgba(255, 255, 255, 0.8);
    
    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --text-inverse: #ffffff;
    
    /* Border & Shadow */
    --border-color: #e5e7eb;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms;
    --transition-base: 250ms;
    --transition-slow: 350ms;
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===================================
    Global Board Styles
====================================== */

#bo_list {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
    margin: 2rem auto;
    max-width: 1400px;
    padding: 0 1rem;
    animation: fadeInUp 0.6s ease-out;
}

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

/* ===================================
    Category Section - Glass Morphism
====================================== */

#bo_cate {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

#bo_cate::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

#bo_cate h2 {
    color: var(--text-inverse);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

#bo_cate_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

#bo_cate_ul a {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-inverse);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base) var(--ease-in-out);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#bo_cate_ul a:hover,
#bo_cate_ul .bo_cate_on {
    background: var(--bg-primary);
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ===================================
    Search & Controls Section
====================================== */

#bo_search_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Search Form - Glass Effect */
#bo_sch {
    flex: 1;
    max-width: 600px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base) var(--ease-in-out);
}

#bo_sch:focus-within {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-2px);
}

#bo_sch form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

#bo_sch select {
    padding: 0.625rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all var(--transition-fast) var(--ease-in-out);
    cursor: pointer;
}

#bo_sch select:hover {
    border-color: var(--primary-color);
}

#bo_sch input[type="text"] {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all var(--transition-fast) var(--ease-in-out);
}

#bo_sch input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

#bo_sch .sch_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-inverse);
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base) var(--ease-in-out);
    white-space: nowrap;
}

#bo_sch .sch_btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
}

/* Button Group Styles */
.btn_bo_user {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn_bo_user .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base) var(--ease-in-out);
    position: relative;
    overflow: hidden;
}

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

.btn_bo_user .btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn_b01 {
    background: var(--bg-primary);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.btn_b01:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn_b02 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-inverse);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.btn_b02:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn_admin {
    background: linear-gradient(135deg, var(--warning-color), #dc2626);
    color: var(--text-inverse);
    border: 2px solid transparent;
}

.btn_admin:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(245, 158, 11, 0.4);
}

/* ===================================
    Table Section - Modern Card Design
====================================== */

.tbl_wrap {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    overflow: visible; /* Changed from hidden to visible to prevent content cutoff */
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tbl_head01 {
    overflow-x: auto; /* Allow horizontal scroll if needed */
}

.tbl_head01 table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.tbl_head01 thead tr {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.tbl_head01 th {
    padding: 1.25rem 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    white-space: nowrap;
}

/* Column widths are set in list.skin.php inline styles for consistency */

.tbl_head01 th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base) var(--ease-in-out);
}

.tbl_head01 th:hover::after {
    width: 100%;
}

.tbl_head01 tbody tr {
    transition: all var(--transition-fast) var(--ease-in-out);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

/* Removed ::before pseudo-element that was causing layout issues */

.tbl_head01 tbody tr:hover {
    background: var(--bg-secondary);
    /* Removed translateX to prevent layout shift */
    /* transform: translateX(5px); */
}

/* Removed hover::before animation */

.tbl_head01 tbody tr.bo_notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.tbl_head01 td {
    padding: 1rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
    vertical-align: middle;
}

/* Column-specific styling (widths are set in list.skin.php) */
.td_chk {
    padding: 0.5rem !important;
}

.td_name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.td_subject {
    word-break: break-word;
}

/* Checkbox styling */
.selec_chk {
    width: 18px;
    height: 18px;
    cursor: pointer;
    vertical-align: middle;
}

.all_chk label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Notice Badge */
.notice_icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.3rem 0.6rem;
    background: linear-gradient(135deg, #ef4444, #ec4899);
    color: white !important;
    border-radius: 20px;
    font-size: 0.7rem !important;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
}

.notice_icon i {
    font-size: 0.65rem;
    margin-right: 0.2rem;
}

.notice_icon span {
    font-size: 0.7rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Title Styles */
.bo_tit {
    position: relative;
    display: inline-block;
}

.bo_tit a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast) var(--ease-in-out);
    position: relative;
}

.bo_tit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base) var(--ease-in-out);
}

.bo_tit a:hover {
    color: var(--primary-color);
}

.bo_tit a:hover::after {
    width: 100%;
}

/* Category Badge */
.bo_cate_link {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-inverse);
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-right: 0.5rem;
    text-decoration: none;
    transition: all var(--transition-fast) var(--ease-in-out);
}

.bo_cate_link:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

/* Comment Count Badge */
.cnt_cmt {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    background: var(--info-color);
    color: var(--text-inverse);
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-left: 0.5rem;
    animation: fadeIn 0.3s ease-out;
}

/* Stats Columns */
.td_num {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.td_datetime {
    color: var(--text-muted);
    font-size: 0.8125rem;
    text-align: center;
    white-space: nowrap;
}

/* Empty State */
.empty_table {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    font-weight: 500;
}

.empty_table::before {
    content: '📭';
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ===================================
    Bottom Button Area Styles
====================================== */

.bo_fx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.bo_fx .btn_bo_user {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Admin action buttons styling */
.bo_fx .btn_admin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--text-inverse);
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base) var(--ease-in-out);
}

.bo_fx .btn_admin:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(245, 158, 11, 0.3);
}

/* Different colors for different admin actions */
.bo_fx button[value="선택삭제"] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.bo_fx button[value="선택삭제"]:hover {
    box-shadow: var(--shadow-lg), 0 0 20px rgba(239, 68, 68, 0.3);
}

.bo_fx button[value="선택복사"] {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.bo_fx button[value="선택복사"]:hover {
    box-shadow: var(--shadow-lg), 0 0 20px rgba(59, 130, 246, 0.3);
}

.bo_fx button[value="선택이동"] {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.bo_fx button[value="선택이동"]:hover {
    box-shadow: var(--shadow-lg), 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Hide admin buttons when no checkbox */
.bo_fx .btn_admin span {
    display: inline-block;
    margin-left: 0.25rem;
}

/* Icon updates for admin buttons */
.bo_fx .btn_admin i {
    font-size: 0.875rem;
}

/* ===================================
    Pagination - Modern Style (Override existing)
====================================== */

.pg_wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin: 2rem auto !important;
    padding: 2rem 1rem !important;
    clear: both;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    float: none !important; /* Override float from default.css */
}

.pg_wrap .pg {
    display: flex !important;
    gap: 0.5rem !important;
    align-items: center !important;
}

.pg_wrap .pg_page,
.pg_wrap .pg_current,
.pg_wrap a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 2.75rem !important;
    height: 2.75rem !important;
    padding: 0 1rem !important;
    border-radius: 12px !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all var(--transition-base) var(--ease-in-out) !important;
    position: relative;
    overflow: hidden;
}

.pg_page,
.pg_wrap a:not(.pg_current) {
    background: var(--bg-primary) !important;
    color: var(--text-secondary) !important;
    border: 2px solid var(--border-color) !important;
}

.pg_page:hover,
.pg_wrap a:not(.pg_current):hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2) !important;
}

.pg_current {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: var(--text-inverse) !important;
    border: 2px solid transparent !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3), var(--shadow-glow) !important;
    transform: scale(1.05) !important;
    font-weight: 700 !important;
}

.pg_start,
.pg_prev,
.pg_next,
.pg_end {
    min-width: 3rem !important;
    background: var(--bg-primary) !important;
    color: var(--text-secondary) !important;
    border: 2px solid var(--border-color) !important;
    font-size: 1.125rem !important;
    margin: 0 0.25rem !important;
}

.pg_start:hover,
.pg_prev:hover,
.pg_next:hover,
.pg_end:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: var(--text-inverse) !important;
    border-color: transparent !important;
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3) !important;
}

/* Pagination Icons - Fixed arrow display */
.pg_start, .pg_prev, .pg_next, .pg_end {
    text-indent: 0 !important; /* Override text-indent to show arrows */
    font-size: 1.5rem !important;
    line-height: 2.75rem !important;
    padding: 0 !important;
    background: none !important; /* Remove background image */
}

.pg_start::before { 
    content: '«'; 
    display: inline-block !important;
}
.pg_prev::before { 
    content: '‹'; 
    display: inline-block !important;
}
.pg_next::after { 
    content: '›'; 
    display: inline-block !important;
}
.pg_end::after { 
    content: '»'; 
    display: inline-block !important;
}

/* Hide sound_only text but keep the element */
.pg_wrap .sound_only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    border: 0 !important;
}

/* ===================================
    Checkbox Styles
====================================== */

.all_chk {
    margin: 1.5rem 0;
}

.selec_chk {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    cursor: pointer;
}

.selec_chk + label {
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast) var(--ease-in-out);
}

.selec_chk:checked + label {
    color: var(--primary-color);
}

/* ===================================
    Responsive Design
====================================== */

@media (max-width: 1024px) {
    #bo_list {
        padding: 0 1rem;
    }
    
    .tbl_head01 {
        overflow-x: auto;
    }
    
    .tbl_head01 table {
        min-width: 700px;
    }
}

@media (max-width: 768px) {
    #bo_search_wrap {
        flex-direction: column;
        align-items: stretch;
    }
    
    #bo_sch {
        max-width: 100%;
    }
    
    .btn_bo_user {
        justify-content: center;
        width: 100%;
    }
    
    /* Hide specific columns on mobile */
    .tbl_head01 th:nth-child(4),
    .tbl_head01 td.td_name,
    .tbl_head01 th:nth-child(5),
    .tbl_head01 td.td_num {
        display: none;
    }
    
    /* Adjust notice icon for mobile */
    .notice_icon {
        font-size: 0.5625rem;
        padding: 0.125rem 0.375rem;
        min-width: 40px;
    }
    
    #bo_cate {
        padding: 1rem;
    }
    
    #bo_cate_ul {
        gap: 0.5rem;
    }
    
    #bo_cate_ul a {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .tbl_head01 th,
    .tbl_head01 td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .pg_wrap {
        padding: 1rem;
    }
    
    .pg_wrap .pg {
        min-width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    #bo_list {
        margin: 1rem auto;
    }
    
    .bo_tit {
        font-size: 0.875rem;
    }
    
    .notice_icon {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }
    
    .btn_bo_user .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
}


/* ===================================
    Loading Animation
====================================== */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base) var(--ease-in-out);
}

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

.loading-spinner {
    width: 3rem;
    height: 3rem;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===================================
    Accessibility Improvements
====================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #4338ca;
        --text-primary: #000000;
        --bg-primary: #ffffff;
        --border-color: #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .btn_bo_user,
    #bo_sch,
    .pg_wrap {
        display: none !important;
    }
    
    .tbl_wrap {
        box-shadow: none;
        border: 1px solid #000;
    }
}