/* Quiz Admin Dashboard Styles */
.quiz-admin-dashboard {
    display: flex;
    min-height: 100vh;
    background: #f5f7fa;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* SIDEBAR */
.dashboard-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 0 15px rgba(0,0,0,0.1);
    position: fixed;
    height: 100vh;
    z-index: 1000;
}

.sidebar-header {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.sidebar-header h3 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-header p {
    margin: 0;
    font-size: 12px;
    opacity: 0.7;
}

.sidebar-nav ul {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.nav-item {
    margin: 5px 15px;
    border-radius: 8px;
    overflow: hidden;
}

.nav-item.active {
    background: rgba(52, 152, 219, 0.2);
    border-left: 4px solid #3498db;
}

.nav-item a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-item a:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.nav-item.active a {
    color: white;
    font-weight: 500;
}

.nav-item i {
    width: 24px;
    font-size: 16px;
    margin-right: 12px;
    text-align: center;
}

.sidebar-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
}

.server-stats p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.server-stats i {
    margin-right: 8px;
    width: 16px;
}

/* MAIN CONTENT */
.dashboard-main {
    flex: 1;
    margin-left: 260px;
    min-width: 0;
}

/* TOP HEADER */
.top-header {
    background: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left h2 {
    margin: 0 0 5px;
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
}

.breadcrumb {
    font-size: 14px;
    color: #7f8c8d;
}

.breadcrumb span {
    color: #3498db;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    display: flex;
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.search-box input {
    border: none;
    background: transparent;
    padding: 10px 15px;
    width: 250px;
    font-size: 14px;
}

.search-box button {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #6c757d;
    cursor: pointer;
}

.date-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.date-filter input {
    border: none;
    background: transparent;
    font-size: 14px;
    width: 110px;
}

.date-filter span {
    color: #6c757d;
    font-size: 14px;
}

.date-filter button {
    background: #3498db;
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-export, .btn-refresh {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-export {
    background: #28a745;
    color: white;
}

.btn-refresh {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-export:hover {
    background: #218838;
}

.btn-refresh:hover {
    background: #e9ecef;
}

/* CONTENT AREA */
.content-area {
    padding: 30px;
}

/* QUICK STATS */
.quick-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.quick-stat-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease;
}

.quick-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quick-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.quick-stat-info h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.quick-stat-info p {
    margin: 5px 0 0;
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
}

.quick-stat-change {
    margin-left: auto;
}

.change-up {
    background: #d4edda;
    color: #155724;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* CHARTS */
.charts-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .charts-row {
        grid-template-columns: 1fr;
    }
}

.chart-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.chart-container.large {
    grid-column: span 1;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-header select {
    padding: 8px 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    color: #495057;
}

.chart-body {
    height: 250px;
    position: relative;
}

/* CARDS */
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

.card-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.row-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .row-two-columns {
        grid-template-columns: 1fr;
    }
}

/* TAB CONTENT */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* ANALYTICS */
.analytics-controls {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-group label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.analytics-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.analytics-card h4 {
    margin: 0 0 20px;
    color: #2c3e50;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-rate {
    display: flex;
    align-items: center;
    gap: 30px;
}

.rate-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.rate-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.rate-label {
    font-size: 12px;
    opacity: 0.9;
}

.rate-stats {
    flex: 1;
}

.rate-stats .stat {
    margin-bottom: 15px;
}

.rate-stats .number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.rate-stats .label {
    font-size: 14px;
    color: #6c757d;
}

.time-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.time-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.time-stat i {
    font-size: 24px;
    color: #3498db;
    width: 50px;
    height: 50px;
    background: #e8f4fc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-stat h5 {
    margin: 0 0 5px;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
}

.time-stat p {
    margin: 0;
    color: #6c757d;
    font-size: 18px;
    font-weight: 700;
}

/* LEADERBOARDS */
.leaderboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.lb-tab {
    padding: 10px 25px;
    border: none;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
}

.lb-tab.active {
    background: #3498db;
    color: white;
}

.lb-tab:hover:not(.active) {
    background: #e9ecef;
}

.lb-section {
    display: none;
}

.lb-section.active {
    display: block;
}

/* RESULTS FILTERS */
.results-filters {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.filter-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-col {
    flex: 1;
    min-width: 200px;
}

.filter-col label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.filter-col select, .filter-col input {
    width: 100%;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
}

.date-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-range input {
    flex: 1;
}

.btn-apply-filter, .btn-reset-filter {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}

.btn-apply-filter {
    background: #3498db;
    color: white;
}

.btn-reset-filter {
    background: #6c757d;
    color: white;
}

/* USERS STATS */
.users-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.user-stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.user-stat-card i {
    font-size: 36px;
    color: #3498db;
    width: 70px;
    height: 70px;
    background: #e8f4fc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-stat-card h3 {
    margin: 0 0 5px;
    font-size: 32px;
    color: #2c3e50;
}

.user-stat-card p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

/* QUIZZES GRID */
.quizzes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.quiz-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.quiz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.quiz-card-header {
    padding: 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-card-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.quiz-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.quiz-status.active {
    background: rgba(255,255,255,0.2);
}

.quiz-status.draft {
    background: rgba(255,255,255,0.1);
    opacity: 0.8;
}

.quiz-card-body {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border-bottom: 1px solid #e9ecef;
}

.quiz-stat {
    text-align: center;
}

.quiz-stat i {
    font-size: 20px;
    color: #3498db;
    margin-bottom: 5px;
}

.quiz-stat small {
    display: block;
    color: #6c757d;
    font-size: 12px;
    margin-bottom: 3px;
}

.quiz-stat p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.quiz-card-footer {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
}

.btn-quiz-action {
    flex: 1;
    padding: 8px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-quiz-action:hover {
    background: #f8f9fa;
}

.btn-quiz-action.view:hover {
    border-color: #3498db;
    color: #3498db;
}

.btn-quiz-action.edit:hover {
    border-color: #f39c12;
    color: #f39c12;
}

.btn-quiz-action.stats:hover {
    border-color: #2ecc71;
    color: #2ecc71;
}

/* CATEGORIES */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #e8f4fc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #3498db;
}

.category-info {
    flex: 1;
}

.category-info h4 {
    margin: 0 0 8px;
    color: #2c3e50;
    font-size: 18px;
}

.category-info p {
    margin: 0 0 12px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
}

.category-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #6c757d;
}

.category-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-actions {
    flex-shrink: 0;
}

.btn-category-action {
    padding: 8px 20px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* REPORTS */
.report-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.report-type-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.report-type-card:hover {
    transform: translateY(-5px);
}

.report-type-card i {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 15px;
}

.report-type-card h4 {
    margin: 0 0 10px;
    color: #2c3e50;
    font-size: 18px;
}

.report-type-card p {
    margin: 0 0 20px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
}

.btn-generate-report {
    padding: 10px 25px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

/* SETTINGS */
.settings-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.settings-tab {
    padding: 10px 25px;
    border: none;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
}

.settings-tab.active {
    background: #3498db;
    color: white;
}

.settings-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.settings-section {
    display: none;
}

.settings-section.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="color"],
.form-group select {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
}

.btn-save-settings {
    padding: 12px 30px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

/* FOOTER */
.dashboard-footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    border-top: 1px solid #e9ecef;
}

/* USER DASHBOARD */
.user-quiz-panel {
    display: flex;
    min-height: 80vh;
    background: #f5f7fa;
}

.user-sidebar {
    width: 280px;
    background: white;
    box-shadow: 3px 0 15px rgba(0,0,0,0.05);
    padding: 25px;
}

.user-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 32px;
}

.user-profile h3 {
    margin: 0 0 5px;
    color: #2c3e50;
    font-size: 18px;
}

.user-profile p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.user-stats-mini {
    margin-top: 20px;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.mini-stat i {
    font-size: 20px;
    color: #3498db;
}

.mini-stat h4 {
    margin: 0;
    font-size: 20px;
    color: #2c3e50;
}

.mini-stat small {
    display: block;
    color: #6c757d;
    font-size: 12px;
}

.user-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-nav a:hover, .user-nav a.active {
    background: #e8f4fc;
    color: #3498db;
}

.user-nav i {
    width: 20px;
    font-size: 16px;
}

.user-main {
    flex: 1;
    padding: 30px;
}

.user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.user-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 28px;
}

.user-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.user-stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #e8f4fc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #3498db;
}

.stat-content h4 {
    margin: 0 0 5px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.stat-content p {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .dashboard-sidebar {
        width: 70px;
    }
    
    .dashboard-sidebar .sidebar-header h3,
    .dashboard-sidebar .sidebar-header p,
    .dashboard-sidebar .nav-item span,
    .dashboard-sidebar .sidebar-footer {
        display: none;
    }
    
    .dashboard-main {
        margin-left: 70px;
    }
    
    .nav-item a {
        justify-content: center;
        padding: 15px;
    }
    
    .nav-item i {
        margin-right: 0;
        font-size: 20px;
    }
    
    .admin-avatar {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-right {
        flex-direction: column;
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .user-quiz-panel {
        flex-direction: column;
    }
    
    .user-sidebar {
        width: 100%;
    }
    
    .user-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .user-nav a span {
        display: none;
    }
    
    .user-nav a i {
        font-size: 18px;
    }
}

/* UTILITY CLASSES */
.login-required {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    margin: 20px 0;
}

.status-active {
    background: #d4edda;
    color: #155724;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.user-role {
    background: #e8f4fc;
    color: #3498db;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.btn-action {
    width: 32px;
    height: 32px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    color: #495057;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
}

.btn-action:hover {
    background: #f8f9fa;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
