/* 게시판 공통 스타일 */
.board-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 커뮤니티 리스트 테이블 스타일 */
.table thead tr th {
    font-weight: 600;
    color: #495057;
    background-color: #f8f9fa;
    white-space: nowrap;
    padding: 1rem;
}

.table tbody tr td {
    padding: 0.75rem 1rem;
}

.table tbody tr td:nth-child(2) {
    text-align: left;
}

.card-body {
    padding: 1.5rem;
}

.table > :not(caption) > * > * {
    padding: 1rem;
}

/* 게시판 필터 영역 */
.board-filters {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

/* 첨부파일 목록 스타일 */
.attachments-list {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
}

.attachments-list h6 {
    color: #495057;
    margin-bottom: 1rem;
}

.attachments-list .list-group-item {
    border-left: none;
    border-right: none;
    padding: 0.75rem 1rem;
    transition: background-color 0.2s;
}

.attachments-list .list-group-item:first-child {
    border-top: none;
}

.attachments-list .list-group-item:last-child {
    border-bottom: none;
}

.attachments-list .list-group-item:hover {
    background-color: #e9ecef;
}

.attachments-list .bi-file-earmark {
    color: #6c757d;
}

Copy/* 비밀글 아이콘 스타일 */
.bi-lock-fill {
    color: #6c757d;
}

.title-cell .bi-lock-fill {
    font-size: 14px;
}

.post-title .bi-lock-fill {
    font-size: 1.2rem;
}

/* 제목 링크 스타일 개선 */
.title-cell a {
    text-decoration: none;
    color: inherit;
}

.title-cell a:hover {
    color: #0d6efd;
}

/* 게시글 제목 영역 정렬 */
.post-title-area {
    margin-bottom: 2rem;
}

.post-title {
    margin: 1rem 0;
}

/* 에디터 툴바 스타일 */
.editor-toolbar {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.editor-toolbar .btn-group {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.editor-toolbar .btn {
    padding: 0.25rem 0.5rem;
}

/* 에디터 영역 */
.editor-content {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    min-height: 300px;
    padding: 1rem;
}

/* 게시판 헤더 */
.board-header {
    margin-bottom: 2rem;
}

.board-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.board-description {
    color: #6c757d;
    font-size: 1rem;
}

/* 게시글 목록 테이블 */
.board-table {
    width: 100%;
    border-top: 2px solid #2c3e50;
    margin-bottom: 1rem;
}

/* 게시글 목록 제목 스타일 */
.table .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: normal;
    line-height: 1.4;
    font-weight: 400;
    font-size: 0.9rem;
}

.board-table th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.board-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #dee2e6;
    vertical-align: top;
}

.board-table tr:hover {
    background-color: #f8f9fa;
}

/* 글번호, 조회수 등 숫자 칼럼 */
.board-table .num-cell {
    width: 100px;
    text-align: center;
}

/* 제목 칼럼 */
.board-table .title-cell {
    text-align: left;
}

.board-table .title-cell a {
    color: #212529;
    text-decoration: none;
}

.board-table .title-cell a:hover {
    color: #0d6efd;
}

/* 작성자, 날짜 칼럼 */
.board-table .author-cell,
.board-table .date-cell {
    width: 150px;
    text-align: center;
}

/* 공지사항 행 스타일 */
.board-table tr.notice {
    background-color: #f8f9fa;
}

.board-table tr.notice .title-cell a {
    font-weight: 500;
}

/* 게시글 상태 뱃지 */
.badge-notice {
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.badge-new {
    background-color: #198754;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* 검색 폼 */
.board-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.board-search select {
    width: 100px;
}

.board-search input {
    flex: 1;
    min-width: 200px;
}

/* 페이지네이션 */
.board-pagination {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 2rem;
}

.board-pagination .page-link {
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
    color: #495057;
    text-decoration: none;
}

.board-pagination .page-link:hover {
    background-color: #e9ecef;
}

.board-pagination .active .page-link {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

/* 글쓰기 버튼 */
.board-write-btn {
    float: right;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* 게시글 상세 페이지 */
.post-header {
    border-top: 2px solid #2c3e50;
    border-bottom: 1px solid #dee2e6;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.post-title {
    font-size: 1.5rem;
    color: #212529;
    margin-bottom: 1rem;
}

.post-info {
    display: flex;
    gap: 1rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.post-content {
    min-height: 300px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* 첨부파일 목록 */
.attachments-list {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 2rem;
}

.attachments-list .file-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.attachments-list .file-icon {
    color: #6c757d;
}

/* 댓글 영역 */
.comments-section {
    margin-top: 3rem;
    border-top: 1px solid #dee2e6;
    padding-top: 2rem;
}

.comment-form textarea {
    width: 100%;
    min-height: 100px;
    margin-bottom: 1rem;
}

.comment-item {
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comment-content {
    color: #212529;
    margin-bottom: 0.5rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

/* 대댓글 */
.comment-reply {
    margin-left: 2rem;
    border-left: 2px solid #dee2e6;
    padding-left: 1rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    /* 모바일에서 패딩 최소화 */
    .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .card-body {
        padding: 0.75rem !important;
    }
    
    .table thead tr th {
        padding: 0.5rem !important;
    }
    
    .table tbody tr td {
        padding: 0.5rem !important;
    }
    
    .table > :not(caption) > * > * {
        padding: 0.5rem !important;
    }
    
    /* community_view.html 모바일 패딩 최소화 */
    .content-wrapper {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    
    .post-header {
        padding: 1rem 0 !important;
    }
    
    .post-content {
        padding: 0.5rem 0 !important;
    }
    
    .comments-section {
        padding: 1rem 0 !important;
    }
    
    .comment-item {
        padding: 0.75rem 0 !important;
    }
    
    /* community_write.html, community_edit.html 모바일 패딩 최소화 */
    .write-form-container,
    .edit-form-container {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    
    .form-control,
    .form-select {
        padding: 0.5rem 0.75rem !important;
    }
    
    .input-group-text {
        padding: 0.5rem 0.75rem !important;
    }
    
    .search-form-container {
        padding: 0.5rem 0 !important;
    }
    
    .search-form .form-select,
    .search-form .form-control {
        padding: 0.5rem 0.75rem !important;
    }
    
    /* community_posts.html 모바일 패딩 최소화 */
    .board-table-container {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    
    .board-table th,
    .board-table td {
        padding: 0.5rem !important;
    }
    
    .pagination-container {
        padding: 0.5rem 0 !important;
    }
    
    .board-table .num-cell,
    .board-table .author-cell,
    .board-table .date-cell {
        display: none;
    }
    
    .board-search {
        flex-direction: column;
    }
    
    .board-search select,
    .board-search input {
        width: 100%;
    }
    
    .post-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .notification-preview {
        width: 100%;
        max-width: 320px;
    }
    
    .notification-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .notification-actions {
        justify-content: flex-end;
        width: 100%;
    }
    
    /* community_view.html 카드 제목 모바일 최적화 */
    .card-title {
        font-size: 0.875rem !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .nav-title {
        font-size: 0.875rem !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
    }
    
    .post-title {
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* 모바일에서 제목 스타일 */
    .table .post-title {
        font-size: 0.85rem !important;
        font-weight: 400 !important;
        line-height: 1.4 !important;
        word-break: break-all !important;
        white-space: normal !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }
    
    .table td {
        vertical-align: top !important;
        padding: 0.75rem 0.5rem !important;
    }
    
    .table .text-truncate {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
}


/* 파일 업로드 영역 */
.upload-zone {
    border: 2px dashed #dee2e6;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.upload-zone:hover {
    background-color: #f8f9fa;
}

.upload-zone.drag-over {
    background-color: #e9ecef;
    border-color: #0d6efd;
}

/* 좋아요 버튼 */
.like-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background: white;
    color: #6c757d;
    transition: all 0.2s ease;
    cursor: pointer;
}

.like-button:hover {
    background-color: #f8f9fa;
    color: #dc3545;
    border-color: #dc3545;
}

.like-button.active {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.like-button .bi {
    font-size: 1.2rem;
}

.like-count {
    font-weight: 500;
    min-width: 1.5rem;
    text-align: center;
}

/* 공유 버튼 스타일 */
.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background: white;
    color: #6c757d;
    transition: all 0.2s ease;
}

.share-button:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
    border-color: #0d6efd;
}

.share-button .bi {
    font-size: 1.2rem;
}

/* 로딩 인디케이터 */
.loading-spinner {
    display: none;
    justify-content: center;
    padding: 2rem;
}

.loading-spinner.active {
    display: flex;
}

/* 알림 배지 스타일 */
.nav-item .badge {
    font-size: 0.75rem;
    padding: 0.25em 0.6em;
    margin-left: 0.3rem;
}

/* 알림 목록 스타일 */
.notifications-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.2s;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-item.unread {
    background-color: #e9f0ff;
}

.notification-item.unread:hover {
    background-color: #dce6f9;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
}

.notification-type {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
}

.notification-type.comment {
    background-color: #e3f2fd;
    color: #0d6efd;
}

.notification-type.like {
    background-color: #fff1f0;
    color: #dc3545;
}

.notification-type.mention {
    background-color: #f0f4c3;
    color: #827717;
}

.notification-content {
    color: #212529;
    text-decoration: none;
}

.notification-content:hover {
    color: #0d6efd;
}

.notification-time {
    font-size: 0.875rem;
    color: #6c757d;
}

.notification-actions {
    display: flex;
    gap: 0.5rem;
}

/* 드롭다운 메뉴에서의 알림 미리보기 */
.notification-preview {
    max-height: 400px;
    width: 320px;
    overflow-y: auto;
}

.notification-preview .notification-item {
    padding: 0.75rem;
}

.notification-preview .notification-content {
    font-size: 0.875rem;
}

/* 알림 없음 표시 */
.no-notifications {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.no-notifications i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* 전체 읽음 버튼 */
.read-all-btn {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
}

/* 새 알림 애니메이션 */
@keyframes notification-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.new-notification {
    animation: notification-pulse 0.5s ease;
}

/* 사용자 드롭다운 메뉴 스타일 개선 */
.navbar .dropdown-menu {
    margin-top: 0.5rem;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.navbar .dropdown-item {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.navbar .dropdown-item i {
    width: 1.5rem;
    text-align: center;
    margin-right: 0.5rem;
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* 알림 카운트 배지 위치 조정 */
.nav-item .position-absolute {
    transform: translate(25%, -25%);
}

/* 드롭다운 메뉴 호버 효과 */
.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 드롭다운 메뉴 활성화 상태 */
.dropdown-item:active,
.dropdown-item.active {
    background-color: #0d6efd;
    color: white;
}

/* community.css에 추가 */
.pagination {
    margin: 20px 0;
    justify-content: center;
}

.pagination .page-link {
    color: #0d6efd;
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 0.375rem 0.75rem;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #0d6efd;
}

/* community_posts.html 전용 스타일 */
.content-wrapper {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2px !important;
}

/* 검색 폼 스타일 */
.search-form-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.search-form .search-select,
.search-form .search-input {
    font-size: 1rem !important;
    height: 48px !important;
}

/* 테이블 기본 스타일 */
.table {
    width: 100% !important;
    table-layout: fixed !important;
    margin-bottom: 0 !important;
}

/* 컬럼 너비 강제 적용 - 최고 우선순위 */
body .content-wrapper .card .card-body .table colgroup col:nth-child(1) { width: 8% !important; min-width: 8% !important; max-width: 8% !important; }
body .content-wrapper .card .card-body .table colgroup col:nth-child(2) { width: 65% !important; min-width: 65% !important; max-width: 65% !important; }
body .content-wrapper .card .card-body .table colgroup col:nth-child(3) { width: 12% !important; min-width: 12% !important; max-width: 12% !important; }
body .content-wrapper .card .card-body .table colgroup col:nth-child(4) { width: 6% !important; min-width: 6% !important; max-width: 6% !important; }
body .content-wrapper .card .card-body .table colgroup col:nth-child(5) { width: 5% !important; min-width: 5% !important; max-width: 5% !important; }
body .content-wrapper .card .card-body .table colgroup col:nth-child(6) { width: 4% !important; min-width: 4% !important; max-width: 4% !important; }

/* 컬럼 너비 조정 - 정확한 선택자 */
.table colgroup col:nth-child(1) { width: 8% !important; }
.table colgroup col:nth-child(2) { width: 65% !important; }
.table colgroup col:nth-child(3) { width: 12% !important; }
.table colgroup col:nth-child(4) { width: 6% !important; }
.table colgroup col:nth-child(5) { width: 5% !important; }
.table colgroup col:nth-child(6) { width: 4% !important; }

/* 제목 셀 스타일 */
.table td:nth-child(2) {
    text-align: left !important;
    padding-left: 1rem !important;
}

.table td:nth-child(2) a {
    text-decoration: none !important;
    color: #333 !important;
}

.table td:nth-child(2) a .post-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    word-break: break-all !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    font-size: 0.9rem !important;
}

/* 테이블 헤더 */
.table thead th {
    background-color: #f8f9fa !important;
    border-top: 2px solid #dee2e6 !important;
    border-bottom: 1px solid #dee2e6 !important;
    padding: 1rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
}

/* 테이블 셀 공통 */
.table td {
    padding: 1rem !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #dee2e6 !important;
}

/* 작성자 정보 스타일 */
.author-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.3rem !important;
}

.author-name {
    font-weight: 500 !important;
    font-size: 0.95rem !important;
}

.author-badges {
    display: flex !important;
    gap: 0.25rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

.badge {
    font-size: 0.75rem !important;
    font-weight: normal !important;
    padding: 0.25em 0.5em !important;
}

/* PC 화면에서만 보이는 요소 */
@media (min-width: 769px) {
    .mobile-meta-container {
        display: none !important;
    }
}

/* 게시판 네비게이션 스타일 */
.board-navigation {
    padding: 2rem 0 !important;
}

.board-navigation .nav-card {
    display: block !important;
    background: #fff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    color: inherit !important;
    height: 100% !important;
    transition: all 0.2s ease-in-out !important;
}

.board-navigation .nav-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
    border-color: #dee2e6 !important;
}

.board-navigation .card-body {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 1.5rem !important;
    text-align: center !important;
}

.board-navigation .icon-circle {
    width: 64px !important;
    height: 64px !important;
    border-radius: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
}

.board-navigation .icon-circle i {
    font-size: 2rem !important;
    color: inherit !important;
}

.board-navigation .card-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    color: #333 !important;
}

.board-navigation .card-text {
    font-size: 0.95rem !important;
    color: #666 !important;
    margin-bottom: 0 !important;
}

/* 섹션별 아이콘 스타일 */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: #0d6efd !important;
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1) !important;
    color: #198754 !important;
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1) !important;
    color: #0dcaf0 !important;
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1) !important;
    color: #ffc107 !important;
}

.bg-secondary-soft {
    background-color: rgba(108, 117, 125, 0.1) !important;
    color: #6c757d !important;
}

.bg-purple-soft {
    background-color: rgba(111, 66, 193, 0.1) !important;
    color: #6f42c1 !important;
}

/* community_posts.html 모바일 반응형 스타일 */
@media (max-width: 768px) {
    .pc-only,
    .table thead,
    .table td:first-child {
        display: none !important;
    }

    .mobile-meta-container {
        margin-top: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .search-form {
        flex-direction: column !important;
    }
    
    .search-form > div {
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .content-wrapper {
        padding: 0 10px !important;
    }

    .table-responsive {
        border: none !important;
        margin: 0 -10px !important;
        padding: 0 10px !important;
        overflow-x: hidden !important;
    }

    .table {
        display: block !important;
        width: 100% !important;
        table-layout: fixed !important;
        margin-bottom: 0 !important;
    }

    .table colgroup, 
    .table thead {
        display: none !important;
    }

    .table tbody {
        display: block !important;
    }

    .table colgroup {
        display: none !important;
    }

    .table th:nth-child(4),
    .table th:nth-child(5),
    .table td:nth-child(4),
    .table td:nth-child(5) {
        display: none !important;
    }

    .table tr {
        padding: 1rem !important;
        border: 1px solid #e9ecef !important;
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.03) !important;
    }

    .table td {
        display: block !important;
        padding: 0 !important;
        border: none !important;
    }

    .table td:first-child {
        display: none !important;
    }

    .table td:nth-child(2) {
        margin-bottom: 0.75rem !important;
    }

    .table td:nth-child(2) a {
        display: block !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
        font-weight: 500 !important;
        color: #333 !important;
        margin-bottom: 0.75rem !important;
    }

    .table td:nth-child(2) .post-title {
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        word-break: break-all !important;
        max-height: 3em !important;
        margin-bottom: 0.25rem !important;
    }

    .table td:nth-child(3) {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .table td:nth-child(4),
    .table td:nth-child(5) {
        display: inline-block !important;
        width: auto !important;
        margin-right: 1rem !important;
        color: #666 !important;
        font-size: 0.9rem !important;
    }

    .table td:last-child {
        color: #666 !important;
        font-size: 0.9rem !important;
    }

    .badge {
        font-size: 0.75rem !important;
        padding: 0.25em 0.5em !important;
    }

    .author-info {
        font-size: 0.85rem !important;
    }

    .form-select, .form-control {
        font-size: 16px !important;
    }

    .post-title {
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        line-height: 1.5 !important;
        max-height: 3em !important;
    }

    .mobile-author-line {
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    .mobile-post-meta {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        color: #666 !important;
        font-size: 0.85rem !important;
    }

    .mobile-post-meta i {
        margin-right: 0.25rem !important;
    }

    .mobile-post-meta span {
        display: flex !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }

    .mobile-author-line .author-name {
        color: #333 !important;
        font-weight: 500 !important;
    }

    .mobile-author-line .badge {
        font-size: 0.75rem !important;
        padding: 0.2em 0.6em !important;
        font-weight: normal !important;
    }

    .mobile-post-meta i {
        font-size: 0.9rem !important;
        color: #999 !important;
    }

    .table td:first-child,
    .table thead {
        display: none !important;
    }

    .table td:nth-child(3),
    .table td:nth-child(4),
    .table td:nth-child(5),
    .table td:nth-child(6) {
        display: none !important;
    }

    .table tr {
        position: relative !important;
        display: block !important;
        padding: 1rem !important;
        border: 1px solid #e9ecef !important;
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
        background: #fff !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }

    .table tr:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.08) !important;
    }

    .board-navigation .nav-card {
        margin-bottom: 0.5rem !important;
    }

    .board-navigation .icon-circle {
        width: 56px !important;
        height: 56px !important;
    }

    .board-navigation .icon-circle i {
        font-size: 1.75rem !important;
    }

    .board-navigation .card-title {
        font-size: 1.1rem !important;
    }

    .board-navigation .card-text {
        font-size: 0.9rem !important;
    }
}