/* ─── VeilleRSS Modern Design System ─────────────────────────── */

:root {
    /* Color Palette — CONTRASTE POP HIGH ENERGY */
    --bg-main: #070f1e; /* Bleu Nuit ultra-sombre et riche */
    --bg-card: rgba(15, 30, 54, 0.85); /* Cartes Bleu Nuit profondes */
    --bg-card-hover: rgba(22, 45, 80, 0.95);
    
    /* Pop Accent Colors (Logo Colors) */
    --pop-turquoise: #3cb4aa;
    --pop-orange: #f0961e;
    --pop-red: #c81e32;
    --pop-yellow: #f0961e; /* fallback to orange */
    --pop-purple: #9c88ff;
    
    --border-color: rgba(26, 188, 156, 0.25);
    --border-color-focus: #1abc9c;
    
    --color-primary: #3cb4aa; /* Turquoise Logo */
    --color-primary-hover: #2a948b;
    --color-secondary: #f0961e; /* Orange Logo */
    --color-secondary-hover: #d07e15;
    --color-success: #3cb4aa; /* Turquoise Logo */
    --color-success-hover: #2a948b;
    --color-warning: #f0961e; /* Orange Logo */
    --color-warning-hover: #d07e15;
    --color-danger: #c81e32; /* Rouge Logo */
    --color-danger-hover: #a81525;
    --color-muted: #8395a7;

    --text-main: #ffffff;
    --text-muted: #c8d6e5;
    --text-inverse: #070f1e;

    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --border-radius: 14px;
    --transition-speed: 0.25s;
    --shadow-premium: 0 12px 35px -10px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px 0 rgba(26, 188, 156, 0.3);
}

/* ─── Global Resets ────────────────────────────────────────── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(26, 188, 156, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 159, 67, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 82, 82, 0.04) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

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

/* ─── Minimal Layout (Auth Pages) ───────────────────────────── */
.minimal-layout {
    background: #050C18;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
    margin: auto;
}

.auth-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.auth-logo-icon {
    font-size: 32px;
}

.auth-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}


.auth-logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-main), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-premium);
}

.auth-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-card-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-card-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 12px;
}

/* ─── App Layout Wrapper ────────────────────────────────────── */
.app-layout {
    display: flex;
    min-height: 100vh;
}

.app-sidebar {
    width: 260px;
    background: #050c18;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    transition: transform var(--transition-speed);
}

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

.sidebar-logo-icon {
    font-size: 24px;
}

.sidebar-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    background: linear-gradient(135deg, #ffffff, var(--pop-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-close-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
}

.sidebar-nav {
    padding: 20px 14px;
    flex: 1;
    overflow-y: auto;
}

.nav-section-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin: 25px 0 10px 10px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--text-muted);
    border-radius: 10px;
    font-weight: 500;
    margin-bottom: 4px;
    transition: all var(--transition-speed);
}

.nav-item:hover, .nav-item.active {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(26, 188, 156, 0.2), rgba(26, 188, 156, 0.05));
}
.nav-item.active {
    border-left: 4px solid var(--pop-turquoise);
    font-weight: 700;
}

/* Sidebar Nav Icons matching Logo Colors */
.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-speed);
}
.nav-item:hover .nav-icon {
    transform: scale(1.15);
}
.nav-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: filter var(--transition-speed);
}
.nav-icon.icon-turquoise svg {
    stroke: #3cb4aa;
    filter: drop-shadow(0 0 4px rgba(60, 180, 170, 0.4));
}
.nav-icon.icon-orange svg {
    stroke: #f0961e;
    filter: drop-shadow(0 0 4px rgba(240, 150, 30, 0.4));
}
.nav-icon.icon-red svg {
    stroke: #c81e32;
    filter: drop-shadow(0 0 4px rgba(200, 30, 50, 0.4));
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-details .username {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.user-details .user-role {
    font-size: 11px;
    color: var(--text-muted);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-danger);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background var(--transition-speed);
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger-hover);
}

/* ─── Main Wrapper & Headers ────────────────────────────────── */
.main-wrapper {
    margin-left: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-header {
    height: 70px;
    border-bottom: 1px solid var(--border-color);
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 90;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.sidebar-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

.search-bar-container {
    width: 100%;
    max-width: 380px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
}

.search-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 10px 35px 10px 38px;
    color: var(--text-main);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all var(--transition-speed);
}

.search-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
}

.clear-search {
    position: absolute;
    right: 12px;
    color: var(--text-muted);
    cursor: pointer;
}

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

.header-action-btn {
    font-size: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-danger);
    color: var(--text-inverse);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
}

/* ─── Content Body ──────────────────────────────────────────── */
.content-body {
    padding: 40px 30px;
    flex: 1;
    background: radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.04), transparent 50%);
}

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

.dashboard-header h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.dashboard-header .subtitle {
    color: var(--text-muted);
    margin-top: 5px;
}

/* ─── Stats Grid ────────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-speed);
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.stat-card:nth-child(1)::before { background: var(--pop-turquoise); }
.stat-card:nth-child(2)::before { background: var(--pop-orange); }
.stat-card:nth-child(3)::before { background: var(--pop-red); }

.stat-icon {
    font-size: 28px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-indigo { background: rgba(60, 180, 170, 0.18); color: var(--pop-turquoise); }
.icon-emerald { background: rgba(240, 150, 30, 0.18); color: var(--pop-orange); }
.icon-danger { background: rgba(200, 30, 50, 0.18); color: var(--pop-red); }
.icon-warning { background: rgba(240, 150, 30, 0.18); color: var(--pop-yellow); }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
}

/* ─── Dashboard Content Columns ──────────────────────────────── */
.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 35px;
    align-items: start;
}

.filter-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.filter-pill {
    padding: 6px 16px;
    background: rgba(15, 30, 54, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition-speed);
}

.filter-pill:hover, .filter-pill.active {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.25), rgba(26, 188, 156, 0.08));
    color: var(--pop-turquoise);
    border-color: var(--pop-turquoise);
    box-shadow: 0 0 12px rgba(26, 188, 156, 0.25);
}

/* Toggle Switch Component */
.toggle-switch-link {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

.toggle-switch-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition-speed);
}

.toggle-switch-link:hover .toggle-switch-label {
    color: var(--text-main);
}

.toggle-switch-track {
    width: 44px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2px;
    transition: background-color var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
}

.toggle-switch-track.active {
    background-color: var(--pop-turquoise);
    border-color: var(--pop-turquoise);
    box-shadow: 0 0 12px rgba(26, 188, 156, 0.4);
}

.toggle-switch-thumb {
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform var(--transition-speed);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.toggle-switch-track.active .toggle-switch-thumb {
    transform: translateX(20px);
}

/* ─── Articles List & Card ──────────────────────────────────── */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    backdrop-filter: blur(8px);
    transition: all var(--transition-speed);
}

.article-card:hover {
    border-color: var(--border-color-focus);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.article-card.read {
    opacity: 0.65;
}

.article-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.article-source-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.feed-favicon-img {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.feed-favicon-fallback {
    font-size: 14px;
}

.feed-source-title {
    font-weight: 600;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-title a {
    color: var(--text-main);
}

.article-title a:hover {
    color: var(--color-primary);
}

.article-summary {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.read-more-link {
    font-weight: 600;
    color: var(--color-primary);
}

.article-actions {
    display: flex;
    gap: 8px;
}

.article-action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-main);
    transition: all var(--transition-speed);
}

.article-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color-focus);
}

/* ─── Sidebar Widgets ───────────────────────────────────────── */
.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 25px;
}

.widget-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.theme-filters-list, .importance-filters-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.theme-filter-item, .importance-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-muted);
    transition: all var(--transition-speed);
}

.theme-filter-item:hover, .theme-filter-item.active {
    filter: brightness(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.theme-filter-item.active {
    font-weight: 700;
}

.theme-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.quick-favorites-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-fav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fav-item-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-main);
}

.sidebar-unread-badge {
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
}

/* ─── Badges ────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-muted { background: rgba(189, 195, 199, 0.15); color: #bdc3c7; }
.badge-info { background: rgba(26, 188, 156, 0.18); color: #1abc9c; }
.badge-warning { background: rgba(243, 156, 18, 0.18); color: #f39c12; }
.badge-danger { background: rgba(231, 76, 60, 0.18); color: #e74c3c; }
.badge-success { background: rgba(26, 188, 156, 0.18); color: #1abc9c; }

/* ─── Forms Elements ────────────────────────────────────────── */
.form-card-container {
    max-width: 800px;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

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

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

.required-star {
    color: var(--color-danger);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    z-index: 2;
    pointer-events: none;
}

.input-with-icon input, .form-group input[type="text"], .form-group input[type="email"], .form-group input[type="url"], .form-group textarea, .form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    color: var(--text-main);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all var(--transition-speed);
}

.form-group select {
    min-height: 46px;
    padding: 10px 16px;
    cursor: pointer;
    background-color: #0b192c;
    color: #ffffff;
}

.form-group select option {
    background-color: #0d213a;
    color: #ffffff;
    padding: 12px;
    font-size: 14px;
}

.input-with-icon input {
    padding-left: 45px !important;
}

.input-with-icon input:focus, .form-group input[type="text"]:focus, .form-group input[type="email"]:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--pop-turquoise);
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.2);
    background-color: #0d213a;
}

.form-hint {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 6px;
    display: block;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
    gap: 8px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pop-turquoise), #16a085);
    color: #070f1e;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.35);
    letter-spacing: 0.2px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffffff, #d0fff5);
    color: #0a3d2e;
    box-shadow: 0 6px 24px rgba(26, 188, 156, 0.6), 0 0 0 2px rgba(26, 188, 156, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.2), rgba(255, 159, 67, 0.08));
    color: var(--pop-orange);
    border: 1px solid var(--pop-orange);
}

.btn-secondary:hover {
    background: var(--pop-orange);
    color: #070f1e;
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.4);
    transform: translateY(-1px);
}

.btn-danger {
    background: linear-gradient(135deg, var(--pop-red), #e74c3c);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.35);
}

.btn-danger:hover {
    background: #ff3838;
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.5);
    transform: translateY(-1px);
}
    color: var(--text-inverse);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-hover), var(--color-secondary-hover));
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-color-focus);
}

.btn-danger {
    background: var(--color-danger);
    color: var(--text-inverse);
}

.btn-danger:hover {
    background: var(--color-danger-hover);
}

.btn-success {
    background: var(--color-success);
    color: var(--text-inverse);
}

.btn-success:hover {
    background: var(--color-success-hover);
}

.btn-muted {
    background: transparent;
    color: var(--text-muted);
}

.btn-muted:hover {
    color: var(--text-main);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-xs {
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
}

/* ─── Importance Radio Card ─────────────────────────────────── */
.importance-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
}

.importance-radio-card {
    cursor: pointer;
}

.importance-radio-card input {
    display: none;
}

.radio-card-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-speed);
}

.radio-emoji {
    font-size: 24px;
    margin-bottom: 8px;
}

.radio-label {
    font-weight: 700;
    font-size: 14px;
}

.radio-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.importance-radio-card input:checked + .radio-card-content {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

/* ─── Checkbox grid ─────────────────────────────────────────── */
.themes-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.theme-checkbox-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.theme-checkbox-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.theme-checkbox-card input {
    width: 16px;
    height: 16px;
}

/* ─── Feeds Grid Layout ──────────────────────────────────────── */
.feeds-index-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

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

.feed-list-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-speed);
}

.feed-list-card:hover {
    border-color: var(--border-color-focus);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.feed-card-main-info {
    padding: 24px;
}

.feed-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.feed-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-title {
    font-size: 16px;
    font-weight: 700;
}

.feed-title a {
    color: var(--text-main);
}

.feed-url-text {
    font-size: 12px;
    color: var(--text-muted);
    word-break: break-all;
    margin-bottom: 10px;
}

.feed-description {
    font-size: 13px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-tags-row {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.theme-tag-pill {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.favorite-star-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.favorite-star-btn.active, .favorite-star-btn:hover {
    color: var(--color-warning);
}

.feed-card-footer {
    border-top: 1px solid var(--border-color);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.unread-pill {
    background: var(--color-primary);
    color: var(--text-inverse);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
}

/* ─── Table Premium Styles (Admin Tables) ──────────────────── */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.admin-panel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    backdrop-filter: blur(8px);
}

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

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.admin-table th, .admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.table-user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-img-xs {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.actions-cell {
    text-align: right;
}

.admin-action-buttons-group {
    display: inline-flex;
    gap: 6px;
}

/* ─── Modal Styles ──────────────────────────────────────────── */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 200;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: #141425;
    border: 1px solid var(--border-color-focus);
    border-radius: var(--border-radius);
    padding: 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal-btn:hover {
    color: var(--text-main);
}

.modal-actions-row {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

/* ─── Flash Messages Alerts ────────────────────────────────── */
.flash-messages-container {
    margin-bottom: 24px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

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

.alert-success { background: rgba(16, 185, 129, 0.15); border: 1px solid var(--color-success); color: #34d399; }
.alert-error { background: rgba(239, 68, 68, 0.15); border: 1px solid var(--color-danger); color: #fca5a5; }
.alert-warning { background: rgba(245, 158, 11, 0.15); border: 1px solid var(--color-warning); color: #fcd34d; }
.alert-info { background: rgba(59, 130, 246, 0.15); border: 1px solid #3b82f6; color: #93c5fd; }

.alert-close {
    background: transparent;
    border: none;
    font-size: 18px;
    color: inherit;
    cursor: pointer;
    margin-left: auto;
}

/* ─── Themes Views grid ──────────────────────────────────────── */
.themes-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.theme-display-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.theme-card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.theme-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.theme-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.theme-card-desc-empty {
    font-size: 13px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.theme-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.theme-view-articles-btn {
    font-weight: 600;
}

/* ─── Pagination ────────────────────────────────────────────── */
.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.pagination-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 6px;
}

.pagination-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--color-primary);
}

.pagination-info {
    color: var(--text-muted);
    font-size: 14px;
}

/* ─── Responsive Styles ──────────────────────────────────────── */
@media (max-width: 991px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .feeds-index-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .app-sidebar {
        transform: translateX(-100%);
    }

    .app-sidebar.open {
        transform: translateX(0);
    }

    .sidebar-close-btn {
        display: block;
    }

    .main-wrapper {
        margin-left: 0;
    }

    .sidebar-toggle-btn {
        display: block;
    }

    .search-bar-container {
        display: none; /* Hide header search bar on mobile, use simple search forms */
    }

    .content-body {
        padding: 24px 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Feed List Grid & Cards ─────────────────────────────────── */
.feeds-index-layout {
    display: block;
}

.feeds-main-list {
    width: 100%;
}

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

.feed-list-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow var(--transition-speed), transform var(--transition-speed);
}

.feed-list-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

.feed-card-main-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feed-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.feed-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.feed-title {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-title a {
    color: var(--text-main);
}

.feed-title a:hover {
    color: var(--color-primary);
}

.feed-url-text {
    font-size: 12px;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feed-description {
    font-size: 13px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-tags-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.feed-fetched-date {
    font-size: 11px;
    color: var(--text-muted);
}

/* Footer: stats on first line, actions on second line */
.feed-card-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.feed-stats-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

.unread-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.18);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.feed-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ─── Button sizes ───────────────────────────────────────────── */
.btn-xs {
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
    height: 30px;
    display: inline-flex;
    align-items: center;
}

.btn-sm {
    padding: 7px 16px;
    font-size: 13px;
    border-radius: 7px;
    font-weight: 600;
    white-space: nowrap;
    height: 34px;
    display: inline-flex;
    align-items: center;
}

/* Favorite star button inside feed card */
.favorite-star-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    padding: 2px 4px;
    transition: color var(--transition-speed), transform 0.2s;
    flex-shrink: 0;
}

.favorite-star-btn:hover,
.favorite-star-btn.active {
    color: #f59e0b;
    transform: scale(1.2);
}

/* ─── Feed show page ─────────────────────────────────────────── */
.feed-show-header-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.feed-header-left {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.feed-favicon-img-large {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.feed-favicon-fallback-large {
    font-size: 36px;
    flex-shrink: 0;
}

.feed-info-details {
    flex: 1;
    min-width: 0;
}

.feed-info-details h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feed-url-link {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feed-desc-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.feed-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.feed-articles-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px;
}

.feed-articles-container h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}

/* Theme tag pill */
.theme-tag-pill {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════
   MARQUE-PAGES (BOOKMARKS)
   ═══════════════════════════════════════════════════════ */

.bookmarks-page {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── En-tête ──────────────────────────────────────────────── */
.page-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 14px;
}
.page-header-left .page-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}
.page-header-left .page-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin: 4px 0 0;
}

/* ── Barre de filtre ─────────────────────────────────────── */
.bm-filter-bar {
    margin-bottom: 28px;
}
.bm-filter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.bm-select {
    height: 44px;
    padding: 0 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    min-width: 180px;
}
.bm-select option { background: #0d213a; color: #fff; }
.btn-ghost {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition-speed);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text-main);
    border-color: var(--text-muted);
}

/* ── Sections ────────────────────────────────────────────── */
.bm-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bm-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 28px 0;
}

/* ── Grille de cartes ────────────────────────────────────── */
.bm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 18px;
}

/* ── Carte ───────────────────────────────────────────────── */
.bm-card {
    border-radius: 14px;
    padding: 18px 18px 14px;
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bm-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.bm-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.bm-card-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.bm-favicon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.bm-favicon-placeholder {
    font-size: 18px;
}
.bm-card-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bm-card-title {
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.2s;
}
.bm-card-title:hover { opacity: 0.8; text-decoration: underline; }
.bm-card-domain {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bm-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bm-cat-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    color: var(--text-muted);
    white-space: nowrap;
}
.bm-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Boutons xs ──────────────────────────────────────────── */
.btn-xs {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 7px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.btn-xs.btn-outline {
    background: transparent;
    border: 1px solid currentColor;
}
.btn-xs.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.btn-xs.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text-secondary);
    border: 1px solid transparent;
    padding: 5px 9px;
}
.btn-xs.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    color: var(--text-main);
}
.btn-xs.btn-danger {
    background: rgba(231,76,60,0.15);
    color: var(--pop-red);
    border: 1px solid rgba(231,76,60,0.3);
}
.btn-xs.btn-danger:hover {
    background: var(--pop-red);
    color: #fff;
}

/* ── État vide ───────────────────────────────────────────── */
.bm-empty-state {
    text-align: center;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.bm-empty-icon {
    font-size: 56px;
    opacity: 0.4;
}
.bm-empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}
.bm-empty-state p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   MODAL MARQUE-PAGES
   ═══════════════════════════════════════════════════════ */
.bm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.bm-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.bm-modal {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.25s ease;
    overflow: hidden;
}
.bm-modal-overlay.active .bm-modal {
    transform: translateY(0);
}
.bm-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}
.bm-modal-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.bm-modal-close {
    background: rgba(255,255,255,0.07);
    border: none;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bm-modal-close:hover {
    background: rgba(255,255,255,0.14);
    color: var(--text-main);
}
.bm-modal-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bm-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ── Color picker ────────────────────────────────────────── */
.bm-color-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.bm-color-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s;
    outline: none;
}
.bm-color-dot:hover { transform: scale(1.15); }
.bm-color-dot.selected {
    border-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}

/* ── Pin checkbox ────────────────────────────────────────── */
.bm-pin-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    user-select: none;
}
.bm-checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--pop-turquoise);
    cursor: pointer;
}
