:root {
    /* Color Palette - High End Government */
    --primary-color: #0052a5; /* Official Gov Blue */
    --primary-dark: #003d7a;
    --primary-light: #eef6ff;
    --secondary-color: #dc143c; /* Polish Red */
    --accent-color: #0078d4; /* Modern Accent */
    
    --bg-color: #f8f9fa; /* Light Gray Background */
    --card-bg: #ffffff;
    
    --text-color: #1f2937; /* Dark Gray for better readability */
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    
    --border-color: #e5e7eb;
    --border-focus: #93c5fd;
    
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;

    /* Typography */
    --font-main: 'Roboto', system-ui, -apple-system, sans-serif;
    
    /* Shadows - Smooth & Layered */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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

/* Text Selection */
::selection {
    background: rgba(0, 82, 165, 0.2);
    color: var(--primary-dark);
}

.disclaimer-banner {
    background: linear-gradient(90deg, #fff3cd 0%, #ffecb5 100%);
    color: #856404;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffeeba;
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Glassmorphism */
.gov-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.godlo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.godlo:hover {
    transform: scale(1.05);
}

.site-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-title h1 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 4px;
}

.site-title h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

/* Navigation */
.user-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-greeting {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    margin-right: 10px;
    background: #f0f2f5;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.9rem;
    gap: 8px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 82, 165, 0.2);
    border: 1px solid var(--primary-dark);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #0060c2 0%, #004b94 100%);
    box-shadow: 0 4px 8px rgba(0, 82, 165, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-color);
    background: #fff;
}

.btn-outline:hover {
    border-color: var(--text-color);
    background-color: #f9fafb;
    color: #000;
}

.btn-text {
    background: transparent;
    color: var(--text-light);
    padding: 8px 12px;
}

.btn-text:hover {
    color: var(--secondary-color);
    background-color: rgba(220, 20, 60, 0.05);
}

.btn-mobywatel {
    background: linear-gradient(135deg, #D62828 0%, #B91C1C 100%);
    color: white;
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(185, 28, 28, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-decoration: none;
}

.btn-mobywatel:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(185, 28, 28, 0.35);
    background: linear-gradient(135deg, #e03131 0%, #c92a2a 100%);
}

.btn-mobywatel .icon {
    font-size: 2rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: 80vh;
    animation: fadeIn 0.5s ease-out;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,82,165,0.02) 100%);
    padding: 80px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,82,165,0.03);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.hero h3 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero h3 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h3 span::after {
    content: none; /* Removed old underline */
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.law-card {
    border-left: 4px solid var(--primary-color);
}

.law-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.law-card .status-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.law-card .card-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.law-card h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.law-card .date {
    font-size: 0.8rem;
    color: var(--text-light);
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    margin-left: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.law-card .description {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1.05rem;
    flex-grow: 1;
    line-height: 1.6;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #fff;
    color: var(--text-color);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.form-group input[type="text"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 120, 212, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

/* Login Page - Split Screen Redesign */
.login-page {
    background: #fff;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.login-split-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.login-left {
    flex: 1;
    background: linear-gradient(135deg, #003d7a 0%, #0052a5 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.gov.pl/assets/img/background_gov.svg');
    background-size: cover;
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.login-left-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    animation: fadeIn 0.8s ease-out;
}

.login-godlo-large {
    height: 180px;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

.login-godlo-large:hover {
    transform: scale(1.02);
}

.login-left h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.login-left p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.login-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background-color: #fff;
    position: relative;
}

.login-form-container {
    width: 100%;
    max-width: 420px;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.login-right-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-right-header h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.login-right-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.ic-disclaimer-box {
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 32px;
    font-size: 0.9rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.5;
}

.ic-disclaimer-box i {
    margin-top: 3px;
    color: #d97706;
}

.login-footer-logos {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.login-footer-logos:hover {
    opacity: 1;
}

/* Responsive Login */
@media (max-width: 900px) {
    .login-split-container {
        flex-direction: column;
    }
    
    .login-left {
        flex: 0 0 300px;
        padding: 40px;
    }
    
    .login-godlo-large {
        height: 100px;
        margin-bottom: 20px;
    }
    
    .login-left h1 {
        font-size: 1.8rem;
    }
    
    .login-right {
        flex: 1;
        padding: 40px 20px;
    }
}

/* Law Details */
.law-details {
    padding: 40px;
}

.law-details h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.2rem;
    line-height: 1.2;
}

.law-header .meta {
    display: inline-block;
    background: #eef2f7;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.law-section {
    margin-top: 40px;
}

.law-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.law-section h3::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background-color: var(--secondary-color);
    border-radius: 3px;
}

.changes-section {
    background-color: #fff5f5;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid #ffe3e3;
}

.changes-section h3::before {
    background-color: var(--secondary-color);
}

/* Comments */
.comments-section {
    margin-top: 60px;
}

.comments-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.add-comment-card {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
}

.comment-card {
    background: white;
    border: none;
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.comment-card:hover {
    box-shadow: var(--shadow-md);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.username {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
}

.role-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.role-badge.admin {
    background-color: var(--primary-color);
    color: white;
}

.role-badge.citizen {
    background-color: #e9ecef;
    color: var(--text-light);
}

.rating-badge {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.r-5, .r-4 { color: #27ae60; }
.r-3 { color: #f39c12; }
.r-2, .r-1 { color: #c0392b; }

.rating-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.rating-input label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 0;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.rating-input label:hover {
    background-color: #f8f9fa;
}

.rating-input input[type="radio"] {
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
}

/* Footer */
.gov-footer {
    background-color: #fff;
    padding: 60px 0 40px;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.gov-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-links {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.9rem;
}

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

/* Privacy Policy */
.privacy-card {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin: 30px 0;
    padding: 30px;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.section-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 20px;
    background-color: var(--primary-color);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge.ooc {
    background-color: #4b5563; /* Grey for OOC */
}

.ic-section {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-left: 4px solid var(--primary-color);
}

.ooc-section {
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #4b5563;
}

.privacy-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 50px 0;
}

.pdf-container {
    margin-top: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 600px;
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pdf-download-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.pdf-download-link:hover {
    text-decoration: underline;
}

.footer-links a {
    color: var(--text-light);
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .user-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero h3 {
        font-size: 1.8rem;
    }
}

/* Admin Panel Layout */
.admin-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.admin-sidebar {
    background: #fff;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.admin-sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-sidebar hr {
    margin: 24px 0;
    border: 0;
    border-top: 1px solid var(--border-color);
}

.text-muted {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.ic-info {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    border-left: 3px solid var(--primary-color);
    line-height: 1.5;
}

.admin-form-card {
    padding: 40px;
}

.admin-form-card h3 {
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    font-weight: 700;
}

.file-upload-group {
    background: #f9fafb;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--border-color);
    transition: all 0.2s ease;
    text-align: center;
}

.file-upload-group:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.file-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.file-hint {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1.1rem;
}

/* Profile Page */
.profile-container {
    max-width: 700px;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: var(--shadow-md);
}

.profile-info h2 {
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.input-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.alert {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert.success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Responsive Admin */
@media (max-width: 900px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

/* Data Tables */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
}

.data-table th {
    background-color: #f8f9fa;
    color: var(--text-light);
    font-weight: 600;
    text-align: left;
    padding: 16px;
    border-bottom: 2px solid var(--border-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 0.95rem;
    vertical-align: middle;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background-color: #f9fafb;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-admin {
    background-color: #e0f2fe;
    color: #0369a1;
}

.badge-citizen {
    background-color: #f3f4f6;
    color: #4b5563;
}

.action-btn {
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--text-light);
    transition: all 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
}

.action-btn:hover {
    background-color: #f3f4f6;
    color: var(--primary-color);
}

.action-btn.delete:hover {
    background-color: #fef2f2;
    color: #ef4444;
}
