/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: #1a1a2e; background: #f5f7fa; line-height: 1.6; min-height: 100vh;
    display: flex; flex-direction: column;
}
a { color: #2563eb; text-decoration: none; transition: color 0.2s; }
a:hover { color: #1d4ed8; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.main-content { flex: 1; }

/* ===== Header / Navbar ===== */
.site-header {
    background: hsl(210, 100%, 20%); color: #fff; position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1400px; margin: 0 auto; padding: 0 20px; height: 60px;
}
.site-logo { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 1.25rem; font-weight: 700; }
.site-logo svg { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 1.05rem; padding: 4px 0; border-bottom: 2px solid transparent; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom-color: #60a5fa; }
.header-right { display: flex; align-items: center; gap: 12px; }
.search-box {
    display: flex; align-items: center; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; overflow: hidden;
}
.search-box input {
    background: transparent; border: none; color: #fff; padding: 6px 12px; width: 200px;
    font-size: 0.9rem; outline: none;
}
.search-box input::placeholder { color: rgba(255,255,255,0.5); }
.search-box button {
    background: #2563eb; border: none; color: #fff; padding: 6px 12px; cursor: pointer;
    transition: background 0.2s;
}
.search-box button:hover { background: #1d4ed8; }
.btn-login {
    display: flex; align-items: center; gap: 4px; background: #2563eb; color: #fff !important;
    padding: 6px 16px; border-radius: 6px; font-size: 0.9rem; border: none; cursor: pointer;
    transition: background 0.2s;
}
.btn-login:hover { background: #1d4ed8; }
.user-menu { display: flex; align-items: center; gap: 8px; color: #fff; }
.user-menu .username { font-size: 0.9rem; }
.user-menu .logout-btn { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.user-menu .logout-btn:hover { color: #fff; }

/* Mobile menu */
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.mobile-nav { display: none; background: hsl(210, 100%, 18%); padding: 12px 20px; }
.mobile-nav a { display: block; color: rgba(255,255,255,0.85); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* ===== Carousel ===== */
.carousel-section { margin: 24px auto; max-width: 1400px; padding: 0 20px; }
.carousel-wrapper { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 2.2/1; }
.carousel-slide { position: relative; width: 100%; height: 100%; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 30px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.carousel-overlay h2 { color: #fff; font-size: 1.5rem; font-weight: 600; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
    background: rgba(255,255,255,0.25); border: none; border-radius: 50%; color: #fff;
    font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; backdrop-filter: blur(4px);
}
.carousel-nav:hover { background: rgba(255,255,255,0.4); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.carousel-dot {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
    border: none; cursor: pointer; transition: all 0.2s;
}
.carousel-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ===== Content Layout (articles + sidebar) ===== */
.content-with-sidebar {
    display: grid; grid-template-columns: 1fr 320px; gap: 24px;
    max-width: 1400px; margin: 0 auto; padding: 0 20px 40px;
}
.section-title {
    font-size: 1.35rem; font-weight: 700; margin-bottom: 20px; color: #1a1a2e;
    display: flex; align-items: center; gap: 8px;
}
.section-title svg { color: #2563eb; }

/* ===== Article Card Grid (4 columns on home) ===== */
.article-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.article-card {
    background: #fff; border-radius: 10px; overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.card-image { aspect-ratio: 16/10; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #94a3b8; margin-bottom: 8px; flex-wrap: wrap; }
.card-meta .category-tag {
    background: #eff6ff; color: #2563eb; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem;
}
.card-title { font-size: 0.95rem; font-weight: 600; color: #1a1a2e; margin-bottom: 6px; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-title a { color: inherit; }
.card-title a:hover { color: #2563eb; }
.card-excerpt { font-size: 0.85rem; color: #64748b; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-stats { display: flex; gap: 12px; margin-top: 10px; padding-top: 10px; border-top: 1px solid #f1f5f9; font-size: 0.8rem; color: #94a3b8; }
.card-stats span { display: flex; align-items: center; gap: 3px; }

/* 3-column grid for category/tag/search pages */
.article-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ===== Sidebar ===== */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
    background: #fff; border-radius: 10px; padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.widget-title {
    font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; color: #1a1a2e;
    display: flex; align-items: center; gap: 8px; padding-bottom: 10px;
    border-bottom: 2px solid #eff6ff;
}
.widget-title svg { color: #2563eb; width: 20px; height: 20px; }
.hot-list { display: flex; flex-direction: column; gap: 12px; }
.hot-item { display: flex; align-items: flex-start; gap: 10px; }
.hot-rank {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 4px; font-size: 0.75rem;
    font-weight: 700; display: flex; align-items: center; justify-content: center; color: #fff;
    background: #94a3b8;
}
.hot-rank.rank-1 { background: #ef4444; }
.hot-rank.rank-2 { background: #f97316; }
.hot-rank.rank-3 { background: #eab308; }
.hot-item-info { flex: 1; min-width: 0; }
.hot-item-title {
    font-size: 0.85rem; color: #334155; line-height: 1.4; cursor: pointer;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hot-item-title:hover { color: #2563eb; }
.hot-item-views { font-size: 0.75rem; color: #94a3b8; margin-top: 2px; }

/* Tags widget */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
    display: inline-block; padding: 4px 12px; background: #f1f5f9; color: #475569;
    border-radius: 16px; font-size: 0.8rem; transition: all 0.2s;
}
.tag-item:hover { background: #2563eb; color: #fff; }

/* ===== Article Detail ===== */
.breadcrumb { font-size: 0.85rem; color: #94a3b8; margin-bottom: 16px; }
.breadcrumb a { color: #64748b; }
.breadcrumb a:hover { color: #2563eb; }
.article-detail { background: #fff; border-radius: 10px; padding: 32px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.article-detail h1 { font-size: 1.8rem; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; line-height: 1.4; }
.article-meta-detail { display: flex; align-items: center; gap: 16px; font-size: 0.85rem; color: #94a3b8; margin-bottom: 24px; flex-wrap: wrap; }
.article-content { font-size: 1rem; line-height: 1.8; color: #334155; }
.article-content h2 { font-size: 1.4rem; font-weight: 700; margin: 28px 0 14px; color: #1a1a2e; }
.article-content h3 { font-size: 1.2rem; font-weight: 600; margin: 20px 0 10px; color: #1a1a2e; }
.article-content p { margin-bottom: 16px; }
.article-content img { border-radius: 8px; margin: 16px 0; }
.article-content ul, .article-content ol { margin: 12px 0; padding-left: 24px; }
.article-content li { margin-bottom: 6px; }
.article-content blockquote {
    border-left: 4px solid #2563eb; padding: 12px 20px; margin: 16px 0;
    background: #f8fafc; border-radius: 0 8px 8px 0; color: #475569;
}
.article-tags { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.article-actions { display: flex; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid #f1f5f9; }
.action-btn {
    display: flex; align-items: center; gap: 6px; padding: 8px 20px; border-radius: 8px;
    border: 1px solid #e2e8f0; background: #fff; color: #64748b; cursor: pointer;
    transition: all 0.2s; font-size: 0.9rem;
}
.action-btn:hover { border-color: #2563eb; color: #2563eb; background: #eff6ff; }
.action-btn.active { background: #2563eb; color: #fff; border-color: #2563eb; }

/* Prev/Next Navigation */
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.nav-item { padding: 16px; background: #f8fafc; border-radius: 8px; transition: background 0.2s; }
.nav-item:hover { background: #eff6ff; }
.nav-label { font-size: 0.8rem; color: #94a3b8; margin-bottom: 4px; }
.nav-title { font-size: 0.9rem; color: #334155; font-weight: 500; }
.nav-item.next { text-align: right; }

/* Related articles */
.related-section { margin-top: 32px; }

/* ===== Category/Tag Page ===== */
.page-header { margin-bottom: 24px; }
.page-header h1 { font-size: 1.5rem; font-weight: 700; color: #1a1a2e; }
.page-header p { font-size: 0.9rem; color: #64748b; margin-top: 4px; }

/* ===== Search Page ===== */
.search-section { margin-bottom: 24px; }
.search-form {
    display: flex; gap: 8px; max-width: 600px;
}
.search-form input {
    flex: 1; padding: 10px 16px; border: 2px solid #e2e8f0; border-radius: 8px;
    font-size: 1rem; outline: none; transition: border-color 0.2s;
}
.search-form input:focus { border-color: #2563eb; }
.search-form button {
    padding: 10px 24px; background: #2563eb; color: #fff; border: none; border-radius: 8px;
    cursor: pointer; font-size: 1rem; transition: background 0.2s;
}
.search-form button:hover { background: #1d4ed8; }

/* ===== Pagination ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 32px; flex-wrap: wrap; }
.page-btn, .page-num {
    padding: 8px 14px; border-radius: 6px; font-size: 0.9rem; color: #475569;
    background: #fff; border: 1px solid #e2e8f0; transition: all 0.2s;
}
.page-btn:hover, .page-num:hover { background: #eff6ff; border-color: #2563eb; color: #2563eb; }
.page-num.active { background: #2563eb; color: #fff; border-color: #2563eb; }
.page-dots { padding: 8px 4px; color: #94a3b8; }
.page-info { font-size: 0.85rem; color: #94a3b8; margin-left: 8px; }

/* ===== Footer ===== */
.site-footer {
    background: hsl(210, 100%, 20%); color: rgba(255,255,255,0.8); margin-top: auto;
    padding: 32px 0 20px;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.footer-brand svg { width: 24px; height: 24px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-links h4 { color: #fff; font-size: 0.9rem; margin-bottom: 10px; }
.footer-links a { display: block; color: rgba(255,255,255,0.6); font-size: 0.85rem; padding: 3px 0; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    max-width: 1200px; margin: 20px auto 0; padding: 16px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ===== Auth Pages ===== */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: 60vh; padding: 40px 20px; }
.auth-box { background: #fff; border-radius: 12px; padding: 40px; width: 100%; max-width: 420px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.auth-box h2 { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: #334155; }
.form-group input {
    width: 100%; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-size: 0.95rem; outline: none; transition: border-color 0.2s;
}
.form-group input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.btn-primary {
    width: 100%; padding: 12px; background: #2563eb; color: #fff; border: none;
    border-radius: 8px; font-size: 1rem; cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: #1d4ed8; }
.auth-link { text-align: center; margin-top: 16px; font-size: 0.9rem; color: #64748b; }
.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 0.9rem; }
.alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* ===== 404 ===== */
.error-page { text-align: center; padding: 80px 20px; }
.error-page h1 { font-size: 6rem; font-weight: 800; color: #e2e8f0; }
.error-page h2 { font-size: 1.5rem; color: #475569; margin-bottom: 16px; }
.error-page a { display: inline-block; padding: 10px 24px; background: #2563eb; color: #fff; border-radius: 8px; margin-top: 16px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .article-grid { grid-template-columns: repeat(3, 1fr); }
    .content-with-sidebar { grid-template-columns: 1fr; }
    .sidebar { order: 2; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .mobile-nav.open { display: block; }
    .search-box input { width: 120px; }
    .article-grid, .article-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .carousel-overlay h2 { font-size: 1.1rem; }
    .article-detail h1 { font-size: 1.4rem; }
    .article-nav { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 20px; }
}
@media (max-width: 480px) {
    .article-grid, .article-grid-3 { grid-template-columns: 1fr; }
    .search-box { display: none; }
    .header-inner { height: 48px; }
}

/* ===== Admin Styles ===== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 240px; background: hsl(210, 100%, 20%); color: #fff; padding: 20px 0;
    position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100;
}
.admin-sidebar .brand { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 1.1rem; font-weight: 700; }
.admin-sidebar nav { padding: 12px 0; }
.admin-sidebar nav a {
    display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: rgba(255,255,255,0.7);
    font-size: 0.9rem; transition: all 0.2s;
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: rgba(255,255,255,0.1); color: #fff; }
.admin-sidebar nav a svg { width: 18px; height: 18px; }
.admin-main { flex: 1; margin-left: 240px; padding: 24px; background: #f5f7fa; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-header h1 { font-size: 1.5rem; font-weight: 700; }

/* Admin cards */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.stat-card {
    background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    text-align: center;
}
.stat-card .stat-number { font-size: 2rem; font-weight: 700; color: #2563eb; }
.stat-card .stat-label { font-size: 0.85rem; color: #64748b; margin-top: 4px; }

/* Admin table */
.admin-table-wrap { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 10px 12px; font-size: 0.85rem; color: #64748b; border-bottom: 2px solid #f1f5f9; font-weight: 600; }
.admin-table td { padding: 10px 12px; font-size: 0.9rem; border-bottom: 1px solid #f1f5f9; }
.admin-table tr:hover { background: #f8fafc; }
.admin-table .actions { display: flex; gap: 8px; }
.btn-sm {
    padding: 4px 12px; border-radius: 4px; font-size: 0.8rem; cursor: pointer; border: 1px solid #e2e8f0;
    background: #fff; color: #475569; transition: all 0.2s;
}
.btn-sm:hover { border-color: #2563eb; color: #2563eb; }
.btn-sm.danger { color: #dc2626; border-color: #fecaca; }
.btn-sm.danger:hover { background: #fef2f2; }

/* Admin form */
.admin-form { background: #fff; border-radius: 10px; padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.admin-form .form-group { margin-bottom: 20px; }
.admin-form textarea {
    width: 100%; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-size: 0.95rem; outline: none; resize: vertical; min-height: 200px;
    font-family: inherit; transition: border-color 0.2s;
}
.admin-form textarea:focus { border-color: #2563eb; }
.admin-form select {
    width: 100%; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-size: 0.95rem; outline: none; background: #fff;
}
.toolbar { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; align-items: center; }
.toolbar input { padding: 8px 12px; border: 1px solid #e2e8f0; border-radius: 6px; font-size: 0.9rem; }
.toolbar .btn-primary { width: auto; padding: 8px 20px; }

/* ===== Auto-publish page ===== */
.config-card { background: #fff; border-radius: 10px; padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); margin-bottom: 24px; }
.config-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid #f1f5f9; }
.switch-toggle { position: relative; display: inline-block; width: 48px; height: 24px; }
.switch-toggle input { opacity: 0; width: 0; height: 0; }
.switch-slider {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: #cbd5e1;
    border-radius: 24px; cursor: pointer; transition: 0.3s;
}
.switch-slider::before {
    content: ''; position: absolute; width: 20px; height: 20px; left: 2px; bottom: 2px;
    background: #fff; border-radius: 50%; transition: 0.3s;
}
.switch-toggle input:checked + .switch-slider { background: #2563eb; }
.switch-toggle input:checked + .switch-slider::before { transform: translateX(24px); }

/* Logs */
.log-entry { padding: 12px; border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; }
.log-entry:last-child { border-bottom: none; }
.log-status { padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.log-status.success { background: #f0fdf4; color: #16a34a; }
.log-status.error { background: #fef2f2; color: #dc2626; }

/* ===== Sitemap HTML ===== */
.sitemap-page { max-width: 1200px; margin: 32px auto; padding: 0 20px; }
.sitemap-page h1 { font-size: 1.5rem; margin-bottom: 24px; }
.sitemap-section { margin-bottom: 24px; }
.sitemap-section h2 { font-size: 1.1rem; color: #475569; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid #e2e8f0; }
.sitemap-section ul { padding-left: 20px; }
.sitemap-section li { margin-bottom: 4px; }
.sitemap-section li a { font-size: 0.9rem; }


.user-dropdown{position:relative}.user-dropdown-btn{display:flex;align-items:center;gap:6px;background:#2563eb;color:#fff;padding:6px 14px;border-radius:20px;border:none;cursor:pointer;font-size:.9rem;transition:background .2s}.user-dropdown-btn:hover{background:#1d4ed8}.user-dropdown-menu{display:none;position:absolute;top:calc(100% + 8px);right:0;background:#fff;border-radius:10px;box-shadow:0 8px 30px rgba(0,0,0,.15);min-width:200px;z-index:1001;overflow:hidden;border:1px solid #e2e8f0}.user-dropdown-menu.show{display:block}.dropdown-header{padding:14px 16px}.dropdown-name{font-size:.95rem;font-weight:600;color:#1a1a2e}.dropdown-role{font-size:.8rem;color:#64748b;margin-top:2px}.dropdown-divider{height:1px;background:#f1f5f9;margin:0}.dropdown-item{display:flex;align-items:center;gap:10px;padding:10px 16px;color:#334155;font-size:.9rem;transition:background .15s;text-decoration:none}.dropdown-item:hover{background:#f8fafc;color:#2563eb}.dropdown-item svg{color:#94a3b8;flex-shrink:0}.dropdown-item:hover svg{color:#2563eb}.dropdown-logout{color:#dc2626}.dropdown-logout:hover{background:#fef2f2;color:#dc2626}.dropdown-logout svg{color:#dc2626}
