/* ═══════════════════════════════════════════════════════════════════
   WNET Design System — base.css
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: #1a2236;
    --bg-card-hover: #1f2b42;
    --bg-sidebar: #0d1321;
    --bg-input: #1a2236;
    --border-color: rgba(99, 102, 241, 0.15);
    --border-color-hover: rgba(99, 102, 241, 0.4);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    /* Accent */
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
    --accent-glow: rgba(99, 102, 241, 0.3);
    /* Status */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    /* Sizing */
    --sidebar-width: 260px;
    --sidebar-collapsed: 72px;
    --topbar-height: 64px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 20px var(--accent-glow);
}

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

html { font-size: 15px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; font-weight: 600; line-height: 1.3; }
h1 { font-size: 1.8rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.15rem; }

a { color: var(--accent-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-secondary); }

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

.main-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; min-height: 100vh;
}
body.sidebar-collapsed .main-wrapper { margin-left: var(--sidebar-collapsed); }

.main-content {
    flex: 1; padding: 28px;
    animation: fadeInUp 0.4s ease;
}

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

/* ═══ Sidebar ═══ */
.sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    display: flex; flex-direction: column;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-x: hidden;
}
body.sidebar-collapsed .sidebar { width: var(--sidebar-collapsed); }

.sidebar-header {
    padding: 20px; display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid var(--border-color);
    min-height: 65px;
}
.sidebar-logo {
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem;
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; white-space: nowrap;
}
body.sidebar-collapsed .sidebar-logo-text { display: none; }

.sidebar-toggle {
    background: none; border: none; color: var(--text-secondary);
    cursor: pointer; padding: 6px; border-radius: var(--radius-sm);
    transition: all 0.2s; margin-left: auto; display: flex;
}
.sidebar-toggle:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }

.sidebar-nav { flex: 1; overflow-y: auto; padding: 12px 0; }

.nav-section { padding: 8px 16px; margin-top: 8px; }
.nav-section-title {
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px;
    white-space: nowrap; overflow: hidden;
}
body.sidebar-collapsed .nav-section-title { opacity: 0; height: 0; margin: 0; padding: 0; }

.nav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px; margin: 2px 8px; border-radius: var(--radius-sm);
    color: var(--text-secondary); transition: all 0.2s; white-space: nowrap;
    position: relative; overflow: hidden;
}
.nav-item::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 3px; height: 0; background: var(--accent-gradient);
    border-radius: 0 4px 4px 0; transition: height 0.2s;
}
.nav-item:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.nav-item:hover::before { height: 60%; }
.nav-item.active { color: var(--text-primary); background: rgba(99, 102, 241, 0.1); }
.nav-item.active::before { height: 60%; }
.nav-item.disabled { opacity: 0.35; pointer-events: none; }

.nav-item i { width: 20px; height: 20px; flex-shrink: 0; }
.nav-item span { overflow: hidden; text-overflow: ellipsis; }
body.sidebar-collapsed .nav-item span { display: none; }
body.sidebar-collapsed .nav-item { justify-content: center; padding: 10px; }

.nav-badge {
    margin-left: auto; background: var(--accent-primary);
    color: #fff; font-size: 0.7rem; font-weight: 600;
    padding: 2px 7px; border-radius: 10px;
}

/* ═══ Topbar ═══ */
.topbar {
    height: var(--topbar-height); padding: 0 28px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 14, 26, 0.8); backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 50;
}

.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }

.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb .separator { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-primary); font-weight: 500; }

.user-menu {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 12px; border-radius: var(--radius);
    cursor: pointer; transition: all 0.2s;
}
.user-menu:hover { background: rgba(255,255,255,0.04); }

.user-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent-gradient); display: flex;
    align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.8rem; color: #fff;
}
.user-info { display: flex; flex-direction: column; }
.user-name { font-size: 0.85rem; font-weight: 500; color: var(--text-primary); }
.user-role { font-size: 0.7rem; color: var(--text-muted); }

.btn-logout {
    display: flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.1); color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-size: 0.8rem; cursor: pointer; transition: all 0.2s;
    text-decoration: none;
}
.btn-logout:hover { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }

/* ═══ Cards ═══ */
.card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 24px;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--accent-gradient); opacity: 0;
    transition: opacity 0.3s;
}
.card:hover { border-color: var(--border-color-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }

.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.card-title { font-size: 1rem; font-weight: 600; }
.card-body { }

/* ═══ Stat Cards ═══ */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 28px; }

.stat-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 20px;
    display: flex; align-items: flex-start; gap: 16px;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-color-hover); }

.stat-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.2rem;
}
.stat-info { flex: 1; }
.stat-value { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; }

/* ═══ Buttons ═══ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 500; cursor: pointer;
    transition: all 0.2s; border: none; text-decoration: none;
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: var(--accent-gradient); color: #fff;
    box-shadow: 0 2px 12px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); color: #fff; }

.btn-secondary {
    background: rgba(255,255,255,0.06); color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--border-color-hover); color: var(--text-primary); }

.btn-danger { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.btn-danger:hover { background: rgba(239, 68, 68, 0.25); }

.btn-success { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.btn-success:hover { background: rgba(16, 185, 129, 0.25); }

.btn-sm { padding: 6px 14px; font-size: 0.78rem; }
.btn-icon { padding: 8px; width: 36px; height: 36px; justify-content: center; }

.btn-group { display: flex; gap: 8px; flex-wrap: wrap; }

/* ═══ Tables ═══ */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border-color); }

table {
    width: 100%; border-collapse: collapse;
    font-size: 0.85rem;
}
thead { background: rgba(99, 102, 241, 0.06); }
th {
    padding: 12px 16px; text-align: left; font-weight: 600;
    color: var(--text-secondary); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
}
td {
    padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--text-primary);
}
tr { transition: background 0.15s; }
tr:hover { background: rgba(99, 102, 241, 0.04); }
tr:last-child td { border-bottom: none; }

/* ═══ Forms ═══ */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.8rem; font-weight: 500;
    color: var(--text-secondary); margin-bottom: 6px;
}

.form-input {
    width: 100%; padding: 10px 14px;
    background: var(--bg-input); border: 1px solid var(--border-color);
    border-radius: var(--radius-sm); color: var(--text-primary);
    font-size: 0.85rem; font-family: 'Inter', sans-serif;
    transition: all 0.2s; outline: none;
}
.form-input:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-input::placeholder { color: var(--text-muted); }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 80px; }

.form-checkbox {
    width: 18px; height: 18px; accent-color: var(--accent-primary);
    cursor: pointer;
}

.form-actions { display: flex; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border-color); }

/* ═══ Badges ═══ */
.badge {
    display: inline-flex; align-items: center; padding: 3px 10px;
    border-radius: 20px; font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.03em;
}
.badge-success { background: rgba(16,185,129,0.15); color: #34d399; }
.badge-warning { background: rgba(245,158,11,0.15); color: #fbbf24; }
.badge-danger { background: rgba(239,68,68,0.15); color: #f87171; }
.badge-info { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge-purple { background: rgba(139,92,246,0.15); color: #a78bfa; }
.badge-gray { background: rgba(100,116,139,0.15); color: #94a3b8; }

/* ═══ Alerts / Messages ═══ */
.messages { list-style: none; margin-bottom: 20px; }
.message {
    padding: 12px 20px; border-radius: var(--radius-sm);
    margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; animation: slideIn 0.3s ease;
    border-left: 3px solid;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
.message-success { background: rgba(16,185,129,0.1); border-color: var(--success); color: #34d399; }
.message-error { background: rgba(239,68,68,0.1); border-color: var(--danger); color: #f87171; }
.message-warning { background: rgba(245,158,11,0.1); border-color: var(--warning); color: #fbbf24; }
.message-info { background: rgba(59,130,246,0.1); border-color: var(--info); color: #60a5fa; }

/* ═══ Module Cards (Dashboard) ═══ */
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

.module-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 24px;
    display: flex; align-items: flex-start; gap: 16px;
    transition: all 0.3s; text-decoration: none; color: var(--text-primary);
    position: relative; overflow: hidden;
}
.module-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; transition: opacity 0.3s; opacity: 0;
}
.module-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
    border-color: var(--border-color-hover); color: var(--text-primary);
}
.module-card:hover::after { opacity: 1; }
.module-card.disabled { opacity: 0.4; pointer-events: none; }

.module-icon {
    width: 52px; height: 52px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.module-info { flex: 1; }
.module-name { font-family: 'Outfit'; font-weight: 600; font-size: 1.05rem; }
.module-desc { font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; }
.module-status { margin-top: 8px; }

/* ═══ Page Header ═══ */
.page-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.page-title { font-family: 'Outfit'; font-size: 1.5rem; font-weight: 700; }

/* ═══ Delete Confirmation ═══ */
.delete-confirm {
    max-width: 480px; margin: 60px auto; text-align: center;
}
.delete-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: rgba(239,68,68,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #f87171; font-size: 1.5rem;
}

/* ═══ Empty State ═══ */
.empty-state {
    text-align: center; padding: 60px 20px; color: var(--text-muted);
}
.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.empty-state p { font-size: 0.9rem; }

/* ═══ Permission Grid ═══ */
.perm-module {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); margin-bottom: 16px; overflow: hidden;
}
.perm-module-header {
    padding: 14px 20px; display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; transition: background 0.2s; user-select: none;
}
.perm-module-header:hover { background: rgba(255,255,255,0.02); }
.perm-module-title { font-weight: 600; display: flex; align-items: center; gap: 10px; }
.perm-module-body { padding: 0 20px 16px; }

.perm-category { margin-bottom: 12px; }
.perm-category-title { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.05em; }
.perm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 6px; }

.perm-item {
    display: flex; align-items: center; gap: 8px; padding: 6px 10px;
    border-radius: var(--radius-sm); transition: background 0.15s;
    cursor: pointer; font-size: 0.82rem;
}
.perm-item:hover { background: rgba(255,255,255,0.03); }
.perm-item input { accent-color: var(--accent-primary); width: 16px; height: 16px; cursor: pointer; }

.perm-actions { margin-bottom: 16px; display: flex; gap: 8px; }

/* ═══ Responsive ═══ */
@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); width: var(--sidebar-width) !important; }
    body.sidebar-open .sidebar { transform: translateX(0); }
    .main-wrapper { margin-left: 0 !important; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .modules-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .topbar { padding: 0 16px; }
    .main-content { padding: 16px; }
    .page-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* ═══ Login Page ═══ */
.login-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: var(--bg-primary);
    position: relative; overflow: hidden;
}
.login-page::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(99,102,241,0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(139,92,246,0.06) 0%, transparent 50%);
    animation: loginBg 20s ease infinite alternate;
}
@keyframes loginBg { from { transform: rotate(0deg); } to { transform: rotate(15deg); } }

.login-card {
    position: relative; width: 100%; max-width: 420px; padding: 40px;
    background: rgba(26, 34, 54, 0.8); backdrop-filter: blur(20px);
    border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); animation: fadeInUp 0.6s ease;
}
.login-header { text-align: center; margin-bottom: 32px; }
.login-logo {
    font-family: 'Outfit'; font-size: 2.2rem; font-weight: 800;
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; margin-bottom: 8px;
}
.login-subtitle { color: var(--text-muted); font-size: 0.9rem; }
.login-form .form-group { margin-bottom: 18px; }
.login-btn {
    width: 100%; padding: 12px; font-size: 0.95rem; margin-top: 8px;
}
.login-errors {
    background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
    border-radius: var(--radius-sm); padding: 12px; margin-bottom: 16px;
    color: #f87171; font-size: 0.82rem;
}
.login-errors ul { list-style: none; }

/* ═══ Scrollbar ═══ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ═══ Utilities ═══ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-1 { gap: 8px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ═══ Tom Select WNET Design Overrides ═══ */
select.tomselected, .tomselected {
    display: none !important;
}
.ts-wrapper {
    padding: 0 !important;
    width: 100% !important;
}
.ts-wrapper .ts-control {
    background-color: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--text-primary) !important;
    padding: 10px 14px !important;
    font-size: 0.85rem !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.2s !important;
    box-shadow: none !important;
    min-height: 41px !important;
    line-height: 1.5 !important;
    display: flex !important;
    align-items: center !important;
}
.ts-wrapper.focus .ts-control {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px var(--accent-glow) !important;
}
.ts-wrapper.disabled .ts-control {
    opacity: 0.4 !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
}
.ts-dropdown {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color-hover) !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-lg) !important;
    color: var(--text-primary) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    z-index: 9999 !important;
    margin-top: 4px !important;
    overflow: hidden !important;
}
.ts-dropdown .option {
    padding: 10px 14px !important;
    color: var(--text-secondary) !important;
    cursor: pointer !important;
    transition: background 0.15s, color 0.15s !important;
}
.ts-dropdown .option:hover, .ts-dropdown .active {
    background-color: var(--accent-primary) !important;
    color: #ffffff !important;
}
.ts-dropdown .create {
    color: var(--text-primary) !important;
}
.ts-control input {
    color: var(--text-primary) !important;
    font-size: 0.85rem !important;
    font-family: 'Inter', sans-serif !important;
}
.ts-wrapper.single .ts-control::after {
    border-color: var(--text-muted) transparent transparent transparent !important;
    right: 15px !important;
    transition: transform 0.2s !important;
}
.ts-wrapper.single.open .ts-control::after {
    border-color: transparent transparent var(--text-muted) transparent !important;
}
.ts-wrapper.multi .ts-control > div {
    background: var(--accent-primary) !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    border: none !important;
}
