/* 관리자 네비게이션 스타일 */
.navbar-dark {
    background-color: #212529 !important;
    min-height: 56px;
    max-height: 56px;
    height: 56px;
    padding: 0.5rem 1rem;
    flex-shrink: 0;
    overflow: visible;
    position: relative;
    z-index: 1050;
}

/* 관리자 헤더 전용 스타일 */
.navbar-dark .navbar-brand {
    line-height: 1.2;
    padding: 0.375rem 0;
    height: auto;
    display: flex;
    align-items: center;
}

.navbar-dark .nav-link {
    padding: 0.5rem 0.75rem;
    line-height: 1.2;
    height: auto;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* 드롭다운 메뉴 보이기 */
.navbar-nav .dropdown-menu {
    position: absolute;
    z-index: 9999 !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* 네비게이션 토글 버튼 */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

/* 모바일에서 메뉴 표시 */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #212529;
        margin-top: 0.5rem;
        border-radius: 0.375rem;
        padding: 1rem;
    }
}

/* 상단 네비게이션 메뉴 스타일 */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    margin: 0 0.125rem;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.navbar-nav .dropdown-menu {
    background-color: #343a40;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 9999 !important;
    position: absolute !important;
}

.navbar-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    margin: 0.125rem 0.5rem;
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-weight: 600;
    white-space: nowrap;
    padding: 0.375rem 0.75rem;
    line-height: 1.25;
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
}

.navbar-nav .dropdown-menu {
    margin-top: 0;
}

.navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,.3);
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

/* 관리자 페이지 전체 레이아웃 최적화 */
body.bg-light {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

main.flex-grow-1 {
    flex: 1;
    padding: 1rem 0;
    min-height: calc(100vh - 106px); /* 헤더(56px) + 푸터(50px) */
    overflow-y: auto;
}

.container-fluid {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container-fluid .row {
    flex: 1;
    display: flex;
    margin: 0;
}

.container-fluid .row .col-md-3 {
    padding-left: 0;
    padding-right: 5px;
}

.container-fluid .row .col-md-9 {
    display: flex;
    flex-direction: column;
    padding-left: 5px;
    padding-right: 0;
}

/* 사이드바 최적화 */
.admin-sidebar {
    background-color: #f8f9fa;
    min-height: calc(100vh - 20px);
}

.admin-sidebar .card {
    margin-bottom: 0;
    height: 100%;
}

.admin-sidebar .card-header {
    padding: 0.75rem 1rem;
}

.admin-sidebar .list-group-item {
    padding: 0.75rem 1rem;
    border-left: none;
    border-right: none;
}

/* 콘텐츠 영역 최적화 */
.admin-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 카드 스타일 최적화 */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
    margin-bottom: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 사용자 관리 페이지 전용 */
.users-management-card .card-header {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.users-management-card .card-header h5 {
    color: #495057;
    font-weight: 600;
    margin-right: 1rem;
}

.users-management-card .card-header .input-group {
    max-width: 400px;
}

.users-management-card .card-header .btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    white-space: nowrap;
    min-width: fit-content;
}

/* 반응형 버튼 텍스트 처리 */
@media (max-width: 576px) {
    .users-management-card .card-header {
        padding: 0.75rem 1rem;
    }

    .users-management-card .card-header h5 {
        font-size: 1.1rem;
        margin-right: 0.5rem;
    }

    .users-management-card .card-header .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
        min-width: auto;
    }

    .users-management-card .card-header .input-group {
        max-width: 100%;
        margin-top: 0.5rem;
    }

    .users-management-card .card-header .d-flex.gap-2 {
        gap: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .users-management-card .card-header .d-flex.flex-wrap {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .users-management-card .card-header .d-flex.gap-2.flex-wrap {
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-start;
    }
}

.users-management-card .table {
    color: #212529;
    font-size: 0.85rem;
}

.users-management-card .table td,
.users-management-card .table th {
    color: #212529;
    border-color: #dee2e6;
    font-size: 0.85rem;
    padding: 0.5rem;
}

.users-management-card .table-dark th {
    color: #fff;
    background-color: #212529;
}

.users-management-card .badge {
    font-weight: 600;
}

.users-management-card .badge.bg-primary {
    background-color: #0d6efd !important;
    color: #fff;
}

.users-management-card .badge.bg-danger {
    background-color: #dc3545 !important;
    color: #fff;
}

.users-management-card .badge.bg-success {
    background-color: #198754 !important;
    color: #fff;
}

.users-management-card .badge.bg-warning {
    background-color: #ffc107 !important;
    color: #fff;
}

.users-management-card .badge.bg-secondary {
    background-color: #6c757d !important;
    color: #fff;
}

/* 사용자 관리 페이지 전용 */
.container-fluid {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 모달 내 비활성화된 필드 스타일 */
.modal .form-control:disabled {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    color: #6c757d;
}

/* 모달 내 폼 텍스트 스타일 */
.modal .form-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.users-management-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 150px);
}

.users-management-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
}

.users-management-card .table-responsive {
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

/* 통계 카드 높이 최적화 */
.stats-card {
    height: 120px;
    margin-bottom: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.stats-card .card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.stats-card h4 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.stats-card small {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-card i {
    font-size: 2.5rem;
}

/* 대시보드 레이아웃 최적화 */
.admin-dashboard .row:last-child {
    margin-top: 0.5rem;
}

.table th {
    background-color: #f8f9fa;
    border-top: none;
    font-weight: 600;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.775rem;
}

.badge {
    font-size: 0.75em;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.alert {
    border: none;
    border-radius: 0.375rem;
}

.list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer h5 {
    margin-bottom: 1rem;
}

.footer a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer a:hover {
    color: #3498db;
}

/* 통계 카드 스타일 */
.bg-primary {
    background-color: #0d6efd !important;
}

.bg-success {
    background-color: #198754 !important;
}

.bg-info {
    background-color: #0dcaf0 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

/* 삭제된 사용자 카드 스타일 */
.stats-card.bg-danger,
.card.bg-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
    border-color: #dc3545 !important;
}

.stats-card.bg-danger *,
.card.bg-danger * {
    color: #fff !important;
}

.stats-card.bg-danger.bg-gradient,
.card.bg-danger.bg-gradient {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

/* 모바일 네비게이션 최적화 */
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,.3);
    background: transparent;
    position: relative;
    z-index: 1051;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.btn-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #000;
    background-color: #ffca2c;
    border-color: #ffc720;
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
}

/* 모바일에서 드롭다운 메뉴 최적화 */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #212529;
        border-radius: 0.375rem;
        margin-top: 0.5rem;
        padding: 0.5rem;
        position: relative;
        z-index: 9999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
        display: block !important;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        border-radius: 0.25rem;
        margin-bottom: 0.125rem;
        color: rgba(255, 255, 255, 0.75) !important;
        display: flex !important;
        align-items: center;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff !important;
    }

    /* 드롭다운 토글 화살표 항상 표시 */
    .navbar-nav .dropdown-toggle::after {
        display: inline-block !important;
        margin-left: auto;
    }

    .dropdown-menu {
        background-color: #343a40;
        border: none;
        border-radius: 0.375rem;
        margin-top: 0.25rem;
        width: 100%;
        position: static !important;
        transform: none !important;
        box-shadow: none;
        display: none !important;
        max-width: 100%;
        font-size: 0.9rem;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .dropdown-menu.show {
        display: block !important;
        max-height: 500px;
        opacity: 1;
    }

    /* 네비게이션이 열려있을 때만 드롭다운 표시 */
    .navbar-collapse.show .dropdown-menu.show {
        display: block !important;
        max-height: 500px;
        opacity: 1;
    }

    /* 드롭다운이 닫혀있을 때는 완전히 숨김 */
    .navbar-collapse .dropdown-menu:not(.show) {
        display: none !important;
        max-height: 0;
        opacity: 0;
        margin: 0;
        padding: 0;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.75);
        padding: 0.375rem 0.75rem;
        display: block !important;
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .dropdown-header {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem 0.125rem;
        display: block !important;
    }

    .dropdown-divider {
        border-color: rgba(255, 255, 255, 0.15);
        margin: 0.125rem 0;
        display: block !important;
    }

    .dropdown-item-text {
        color: rgba(255, 255, 255, 0.65);
        padding: 0.25rem 0.75rem;
        display: block !important;
        font-size: 0.75rem;
        line-height: 1.2;
    }

    /* 모든 네비게이션 아이템 가시성 보장 */
    .navbar-nav .nav-item,
    .navbar-nav .nav-link,
    .navbar-nav .dropdown {
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* 드롭다운 메뉴는 show 클래스가 있을 때만 표시 */
    .navbar-nav .dropdown-menu {
        visibility: hidden !important;
        opacity: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        transition: all 0.3s ease;
    }

    .navbar-nav .dropdown-menu.show {
        visibility: visible !important;
        opacity: 1 !important;
        max-height: 500px !important;
        margin-top: 0.25rem !important;
        padding: 0.5rem 0 !important;
    }

    .navbar-nav .dropdown-item {
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* 사이드바에서 메뉴가 숨겨지지 않도록 */
    .navbar-nav .ms-auto {
        margin: 0 !important;
        width: 100%;
    }
}



/* Main content area adjustment */
.main-content {
    flex: 1;
    padding-bottom: 1rem;
}

/* Alert improvements */
.alert {
    margin-bottom: 1rem;
    border: none;
    border-radius: 0.5rem;
}

.alert-dismissible .btn-close {
    padding: 0.75rem 1rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem;
        padding: 0.375rem 0.75rem;
    }

    .navbar-nav .nav-link {
        padding: 0.375rem 0.5rem;
        font-size: 0.9rem;
    }

    .dropdown-menu {
        font-size: 0.9rem;
    }

    .container-fluid {
        padding: 5px;
        min-height: calc(100vh - 56px);
    }

    .container-fluid .row .col-md-3,
    .container-fluid .row .col-md-9 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .card-header {
        padding: 0.5rem 0.75rem;
    }

    .card-body {
        padding: 0.75rem;
    }

    .stats-card {
        height: 100px;
        margin-bottom: 0.75rem;
    }

    .stats-card h4 {
        font-size: 1.5rem;
    }

    .stats-card small {
        font-size: 0.8rem;
    }

    .stats-card i {
        font-size: 2rem;
    }

    .table-responsive {
        font-size: 0.8rem;
        max-height: calc(100vh - 250px);
    }

    .btn-sm {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding: 3px;
    }

    .stats-card {
        height: 90px;
    }

    .stats-card h4 {
        font-size: 1.25rem;
    }

    .stats-card small {
        font-size: 0.75rem;
    }

    .stats-card i {
        font-size: 1.75rem;
    }
}

/* 삭제된 사용자 페이지 전용 스타일 */
.deleted-users-page {
    background-color: #f8f9fa;
    color: #212529;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.deleted-users-page .card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    background-color: #fff;
    transition: all 0.2s ease;
}

.deleted-users-page .card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.deleted-users-page .card-header {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    border-radius: 0.75rem 0.75rem 0 0 !important;
    color: #212529;
    padding: 1rem 1.25rem;
}

.deleted-users-page .card-header h6 {
    color: #212529 !important;
    font-weight: 600;
    margin: 0;
}

.deleted-users-page .card-body {
    background-color: #fff;
    color: #212529;
}

.deleted-users-page .table-responsive {
    border-radius: 0 0 0.75rem 0.75rem;
    overflow: hidden;
    background-color: #fff;
}

.deleted-users-page .table {
    margin-bottom: 0;
    font-size: 0.875rem;
    background-color: #fff;
    color: #212529;
}

.deleted-users-page .table th {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%) !important;
    color: #fff !important;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.deleted-users-page .table td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
    border-color: #e9ecef;
    background-color: #fff;
    color: #212529 !important;
    border-top: 1px solid #e9ecef;
}

.deleted-users-page .table tbody tr {
    background-color: #fff;
    color: #212529;
    transition: all 0.15s ease;
}

.deleted-users-page .table tbody tr:hover {
    background-color: #f8f9fa !important;
    color: #212529 !important;
    transform: translateY(-1px);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.deleted-users-page .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4em 0.8em;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 텍스트 가시성 보장 */
.deleted-users-page h2,
.deleted-users-page h3,
.deleted-users-page h4,
.deleted-users-page h5,
.deleted-users-page p,
.deleted-users-page span,
.deleted-users-page label,
.deleted-users-page .form-control,
.deleted-users-page .text-muted {
    color: #212529 !important;
}

.deleted-users-page .text-danger {
    color: #dc3545 !important;
}

.deleted-users-page .text-success {
    color: #198754 !important;
}

.deleted-users-page .small {
    color: #6c757d !important;
}

.deleted-users-page .alert {
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #212529;
}

.deleted-users-page .form-control {
    background-color: #fff;
    border-color: #ced4da;
    color: #212529;
}

.deleted-users-page .input-group-text {
    background-color: #e9ecef;
    border-color: #ced4da;
    color: #495057;
}

.deleted-users-page .btn {
    color: #fff;
}

/* 작업 버튼 스타일 */
.deleted-users-page .btn-group-sm .btn {
    width: 36px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.deleted-users-page .btn-group-sm .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

.deleted-users-page .btn-group-sm .btn i {
    font-size: 0.875rem;
}

.deleted-users-page .btn-outline-success {
    border-color: #198754;
    color: #198754;
}

.deleted-users-page .btn-outline-success:hover {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}

.deleted-users-page .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.deleted-users-page .btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

/* 검색 입력 개선 */
.deleted-users-page .input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
    color: #6c757d;
}

.deleted-users-page .form-control {
    border-color: #ced4da;
    transition: all 0.15s ease;
}

.deleted-users-page .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* 통계 카드 개선 */
.deleted-users-page .bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

.deleted-users-page .bg-gradient {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) !important;
}

/* 페이징 스타일 */
.deleted-users-page .pagination {
    margin-bottom: 0;
}

.deleted-users-page .page-link {
    border-radius: 0.5rem;
    margin: 0 0.125rem;
    border: 1px solid #dee2e6;
    color: #495057;
    transition: all 0.15s ease;
}

.deleted-users-page .page-link:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.deleted-users-page .page-item.active .page-link {
    background-color: #495057;
    border-color: #495057;
}

/* 반응형 개선 */
@media (max-width: 768px) {
    .deleted-users-page .container-fluid {
        padding: 0.75rem 0.5rem;
    }
    
    .deleted-users-page .card-body {
        padding: 0.75rem;
    }
    
    .deleted-users-page .table td,
    .deleted-users-page .table th {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .deleted-users-page .btn-group-sm .btn {
        width: 32px;
        height: 28px;
    }
    
    .deleted-users-page .btn-group-sm .btn i {
        font-size: 0.75rem;
    }
    
    .deleted-users-page h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .deleted-users-page h2 {
        font-size: 1.25rem;
    }
    
    .deleted-users-page .card-body {
        padding: 0.75rem 0.5rem;
    }
    
    .deleted-users-page .table-responsive {
        font-size: 0.75rem;
    }
}