/**
 * eSynapses Dashboard - Stylesheet
 * Version: 1.1 - FIXED (gray background + checkbox alignment)
 * Inspired by factcheck.si design
 */

/* ============================================================================
   ROOT VARIABLES (Color Palette)
   ============================================================================ */
:root {
    /* Primary colors */
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    
    /* Status colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;
    --orange: #f97316;
    --orange-light: #ffedd5;
    
    /* Neutral colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Layout */
    --sidebar-width: 240px;
    --header-height: 64px;
    --border-radius: 8px;
    --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); /* Dark blue like factcheck.si */
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================================
   LOGIN/REGISTER PAGES (Auth Layout)
   ============================================================================ */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 48px 40px;
    width: 100%;
    max-width: 460px;
}

.auth-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    text-align: center;
}

.auth-header p {
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 32px;
    font-size: 15px;
}

.auth-footer {
    margin-top: 24px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.auth-footer p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

/* Checkbox group for login/register forms */
.checkbox-group {
    margin: 16px 0 24px 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start for multi-line text */
    gap: 10px;
    cursor: pointer;
    color: var(--gray-700);
    font-weight: normal;
    line-height: 1.6;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px; /* Slight adjustment to align with first line of text */
}

.checkbox-group a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Auth form button spacing */
.auth-form .btn {
    margin-top: 8px;
}

/* Package info box (register page) */
.package-info {
    background: var(--primary-light);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
}

.package-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.package-details strong {
    font-size: 18px;
}

.package-details .price {
    font-size: 24px;
    font-weight: 700;
}

.package-info p.small {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

/* Trial info box (register page) - REDESIGNED */
.trial-info {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trial-info::before {
    content: "✓";
    font-size: 24px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trial-info strong {
    font-weight: 600;
}

.trial-info p {
    margin: 0;
    font-size: 15px;
}

/* Remember me checkbox - FIXED ALIGNMENT */
.form-check {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between checkbox and label */
    margin: 16px 0;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0; /* Prevent checkbox from shrinking */
}

.form-check label {
    cursor: pointer;
    color: var(--gray-700);
    margin: 0; /* Remove default margin */
    user-select: none;
}

/* ============================================================================
   DASHBOARD LAYOUT
   ============================================================================ */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: white;
    border-right: 1px solid var(--gray-200);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
    text-decoration: none;
}

.sidebar-menu a.active {
    background: var(--primary-light);
    color: white;
    border-right: 3px solid var(--primary-dark);
}

.menu-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Trial Widget in Sidebar */
.trial-widget {
    margin: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius);
    color: white;
}

.trial-widget h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.trial-widget p {
    font-size: 13px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.trial-widget .btn-light {
    width: 100%;
    background: white;
    color: #764ba2;
    font-weight: 600;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 0 32px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 90;
}

.header-left h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Credits Widget */
.credits-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gray-50);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.credits-widget .icon {
    font-size: 18px;
}

.credits-widget .count {
    color: var(--primary);
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s;
}

.user-button:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    min-width: 200px;
    display: none;
    z-index: 1000;
}

.user-dropdown.show {
    display: block;
}

.user-dropdown a {
    display: block;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    transition: background 0.2s;
}

.user-dropdown a:hover {
    background: var(--gray-50);
    text-decoration: none;
}

.user-dropdown .divider {
    height: 1px;
    background: var(--gray-200);
    margin: 4px 0;
}

/* Content Area */
.content {
    flex: 1;
    padding: 32px;
    max-width: 1400px;
    width: 100%;
}

/* ============================================================================
   COMPONENTS
   ============================================================================ */

/* Alerts */
.alert {
    padding: 16px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: var(--success-light);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-error {
    background: var(--danger-light);
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

.alert-warning {
    background: var(--warning-light);
    color: #92400e;
    border-left: 4px solid var(--warning);
}

.alert-info {
    background: var(--info-light);
    color: var(--info);
    border-left: 4px solid var(--info);
}

/* Cards */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 24px;
    margin-bottom: 24px;
}

.card-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.card-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
}

.card-header p {
    color: var(--gray-600);
    font-size: 14px;
    margin-top: 4px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.primary {
    background: var(--primary-light);
    color: white;
}

.stat-icon.success {
    background: var(--success);
    color: white;
}

.stat-icon.warning {
    background: var(--warning);
    color: white;
}

.stat-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-info p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

/* Auth forms - extra spacing */
.auth-form .form-group {
    margin-bottom: 20px;
}

.form-label,
label:not(.checkbox-group label) {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-label.required::after {
    content: " *";
    color: var(--danger);
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
    color: var(--gray-800);
}

.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control.error,
input.error {
    border-color: var(--danger);
}

.form-text {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 4px;
    display: block;
}

.form-error {
    font-size: 13px;
    color: var(--danger);
    margin-top: 4px;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 8px;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    transition: all 0.3s;
    border-radius: 2px;
}

.password-strength-bar.weak {
    width: 33%;
    background: var(--danger);
}

.password-strength-bar.medium {
    width: 66%;
    background: var(--warning);
}

.password-strength-bar.strong {
    width: 100%;
    background: var(--success);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-300);
    text-decoration: none;
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #059669;
    text-decoration: none;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
    text-decoration: none;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pending {
    background: var(--warning-light);
    color: #92400e;
}

.badge-processing {
    background: var(--info-light);
    color: var(--info);
}

.badge-completed {
    background: var(--success-light);
    color: var(--success);
}

.badge-failed {
    background: var(--danger-light);
    color: var(--danger);
}

.badge-green {
    background: var(--success-light);
    color: var(--success);
}

.badge-yellow {
    background: var(--warning-light);
    color: #92400e;
}

.badge-orange {
    background: var(--orange-light);
    color: #9a3412;
}

.badge-red {
    background: var(--danger-light);
    color: var(--danger);
}

/* Tables */
.table-container {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    text-align: left;
    padding: 12px;
    background: var(--gray-50);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid var(--gray-200);
}

.table td {
    padding: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.table tbody tr:hover {
    background: var(--gray-50);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 20px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination a,
.pagination span {
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    color: var(--gray-700);
    text-decoration: none;
}

.pagination a:hover {
    background: var(--gray-50);
    text-decoration: none;
}

.pagination .current {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Action Buttons Group */
.action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 24px 32px;
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .content {
        padding: 20px;
    }
    
    .header {
        padding: 0 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-box {
        padding: 24px;
    }
}

/* ============================================================================
   UTILITIES
   ============================================================================ */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* ============================================================================
   PAGE-SPECIFIC COMPONENTS
   ============================================================================ */

/* Analysis View Page */
.analysis-header {
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.analysis-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.analysis-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--gray-600);
    font-size: 14px;
}

.analysis-meta > div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.analysis-score {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
}

.analysis-score .score-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
}

.analysis-score .score-label {
    font-size: 18px;
    color: var(--gray-600);
}

.analysis-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
}

.analysis-stats > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.analysis-stats .stat-label {
    font-size: 13px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analysis-stats .stat-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
}

.analysis-report {
    padding: 32px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    line-height: 1.8;
}

.analysis-report h1,
.analysis-report h2,
.analysis-report h3,
.analysis-report h4 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.analysis-report h1 { font-size: 28px; }
.analysis-report h2 { font-size: 24px; }
.analysis-report h3 { font-size: 20px; }
.analysis-report h4 { font-size: 18px; }

.analysis-report p {
    margin-bottom: 16px;
    color: var(--gray-700);
}

.analysis-report ul,
.analysis-report ol {
    margin: 16px 0 16px 24px;
}

.analysis-report li {
    margin-bottom: 8px;
}

.analysis-report code {
    background: var(--gray-100);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.analysis-report pre {
    background: var(--gray-100);
    padding: 16px;
    border-radius: var(--border-radius);
    overflow-x: auto;
    margin: 16px 0;
}

.analysis-report table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.analysis-report table th,
.analysis-report table td {
    padding: 12px;
    border: 1px solid var(--gray-200);
    text-align: left;
}

.analysis-report table th {
    background: var(--gray-50);
    font-weight: 600;
}

/* Dashboard Homepage */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.quick-action-card {
    background: white;
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.quick-action-card:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    transform: translateY(-2px);
}

.quick-action-card .icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.quick-action-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.quick-action-card p {
    font-size: 14px;
    color: var(--gray-600);
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stats-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.stats-list-item .label {
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 500;
}

.stats-list-item .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* Submit Article Form */
.article-form {
    max-width: 800px;
}

.article-form .form-section {
    margin-bottom: 32px;
}

.article-form .form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.article-form .help-text {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 8px;
    padding: 12px;
    background: var(--info-light);
    border-left: 3px solid var(--info);
    border-radius: 4px;
}

.article-form .cost-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--warning-light);
    border-left: 3px solid var(--warning);
    border-radius: 4px;
    margin-top: 16px;
}

.article-form .cost-info strong {
    color: #92400e;
}

.article-url {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    word-break: break-all;
}

/* ============================================================================
   RESPONSIVE UTILITIES
   ============================================================================ */

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.text-muted {
    color: var(--gray-600);
}

.text-primary {
    color: var(--primary);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}