/* === Root Setting === */

:root{
    --bg:#f7f9fc; --panel:#ffffff; --muted:#6b7280; --text:#0f172a;
    --primary: #095fc1; --ink:#075985; --ok:#16a34a; --warn:#d97706; --danger:#dc2626;
    --radius:16px; --gap:18px; --shadow:0 8px 24px rgba(2,6,23,.08);
    color-scheme: light;
}
*{box-sizing:border-box} html,body{height:100%}
body{margin:0;font-family:"Cairo",system-ui;background:var(--bg);color:var(--text)}
.shell{display:grid;grid-template-columns:260px 1fr;gap:var(--gap);padding:var(--gap)}
.topnav,.sidebar,.card{background:var(--panel);border-radius:var(--radius);box-shadow:var(--shadow)}
.topnav{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;position:sticky;top:0;z-index:5}
.brand{display:flex;gap:10px;align-items:center;font-weight:700}
.sidebar{padding:16px;position:sticky;top:64px;height:calc(100vh - 64px);overflow:auto}
.main{display:block}
a{color:var(--primary);text-decoration:none} a:hover{text-decoration:underline}
.btn{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:12px;border:1px solid transparent;background:var(--primary);color:#fff;font-weight:700}
.btn.alt{background:transparent;border-color:#cbd5e1;color:var(--text)}
.input,select,textarea{width:100%;padding:12px 14px;border-radius:12px;border:1px solid #cbd5e1;background:#fff;color:var(--text)}
.table{width:100%;border-collapse:separate;border-spacing:0 10px}
.table th{color:#334155;font-weight:700;text-align:start;padding:10px}
.table td{background:#fff;padding:14px;border:1px solid #e2e8f0}
.badge{padding:6px 10px;border-radius:999px;font-weight:700}
.badge.ok{background:#e8f7ee;color:#166534}
.badge.warn{background:#fff2df;color:#854d0e}
.badge.danger{background:#ffe5e5;color:#991b1b}
.toolbar{display:flex;gap:10px;justify-content:space-between;align-items:center;margin-bottom:16px}
.grid{display:grid;gap:var(--gap)}
.card{padding:16px}
::-webkit-scrollbar {
    display: none;
}
html {
    scrollbar-width: none;
}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: #f9fafa;
    color: #222;
    margin: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('/assets/img/bg.jpg') center/cover no-repeat fixed;
    position: relative;
    z-index: 0;
}

body .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 0;
}

.page-content,
header,
footer {
    position: relative;
    z-index: 2;
}






/* === Home Nav === */
.home-nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 70px;
    z-index: 1000;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.home-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hidden {
    display: none !important;
}

.home-nav .brand{ display:inline-flex; align-items:center; gap:8px; }
.home-nav .logo {
    height: 50px;
    margin-inline-end: auto;
}
.nav-actions {
    display: flex;
    gap: 12px;
    margin-inline-start: auto;
}
.nav-actions a{
    display:inline-flex; align-items:center; gap:6px;
    padding:8px 14px; border-radius:10px; font-weight:700; font-size:.92rem;
    text-decoration:none; transition:.25s ease; border:1px solid transparent;
}
.btn-primary{ background:#0ea5e9; color:#fff; border-color:transparent; }
.btn-primary:hover{ background:#0284c7; }
.btn-secondary{ background:rgba(255,255,255,.15); color:#fff; border-color:rgba(255,255,255,.4); }
.btn-secondary:hover{ background:#fff; color:#0ea5e9; }

.menu-toggle{
    margin-inline-start:8px;
    background:none; border:none; color:#fff; font-size:1.6rem; cursor:pointer;
    display:none;
}

.mobile-drawer{
    position:fixed; inset-block:0; inset-inline-start:-280px;
    width:260px; background:rgba(0,0,0,.9);
    padding:64px 16px 16px; display:flex; flex-direction:column; gap:12px;
    transition:transform .3s ease, inset-inline-start .3s ease; z-index:1500;
    border-inline-end:1px solid rgba(255,255,255,.15);
}
.mobile-drawer.open{ inset-inline-start:0; }
.drawer-close{
    position:absolute; inset-block-start:14px; inset-inline-start:14px;
    background:none; border:none; color:#fff; font-size:1.4rem; cursor:pointer;
}
.drawer-links a{
    display:flex; align-items:center; gap:8px;
    padding:10px 12px; border-radius:10px; text-decoration:none; font-weight:700;
}
.nav-backdrop{
    position:fixed; inset:0; background:rgba(0,0,0,.4);
    z-index:1400;
}
.inner-page .page-content {
    padding-top:  60px;
}

@media (max-width: 900px){
    .nav-actions a{ font-size:.9rem; padding:8px 12px; }
}
@media (max-width: 768px){
    .menu-toggle{ display:block; }
    .nav-actions{ display:none; }
}





/* ===== Topbar USER Dashboard ===== */
.dash-topbar {
    position: fixed;
    top: 0;
    min-width: 100%;
    inset-inline: 0;
    z-index: 1100;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    transition: margin-inline-end .25s ease;
    height: 60px;
}
.dashboard-content.collapsed {
    margin-inline-end: 70px;
}
.dash-topbar.collapsed {
    margin-inline-end: 70px;
}

body.sidebar-open .dash-topbar {
    margin-inline-end: 240px;
}

.topbar-left{
    display: inline-flex; align-items: center; gap: 12px;
}

.sidebar-toggle{
    border: 1px solid #e5e7eb;
    background: #ffffff;
    width: 40px; height: 40px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.sidebar-toggle:hover{ background:#f8fafc; transform: translateY(-1px); }

.topbar-brand{
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.topbar-logo{ width: 35px; height: 35px; object-fit: contain; }
.topbar-title{
    color:#0f172a; font-weight: 800; font-size: 15px;
}

.topbar-right{
    display: inline-flex; align-items: center; gap: 14px;
}
.topbar-hello{ color:#334155; font-weight:700; font-size: 14px; }

.topbar-logout{
    display:inline-flex; align-items:center; gap:8px;
    color:#dc2626; text-decoration:none; font-weight:700; font-size:14px;
    padding:8px 12px; border-radius:10px; border:1px solid #fecaca;
    background:#fff; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.topbar-logout:hover{ background:#fee2e2; color:#b91c1c; border-color:#fca5a5; }

@media (max-width: 720px){
    .topbar-title{ display:none; }
    .topbar-hello{ display:none; }
}
@media (max-width: 960px) {
    body.sidebar-open .dash-topbar {
        margin-inline-end: 0 !important;
    }
}

body.sidebar-open .dashboard-content{
    margin-inline-end: 240px;
    transition: margin-inline-end .25s ease;
}




/* ===== Login Modal ===== */
.login-modal{
    position: fixed; inset: 0; z-index: 1000;
    display: none;
    font-family: 'Tajawal', sans-serif;

}
.login-modal.open{ display: block; }

.login-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    animation: fadeIn .18s ease;
    backdrop-filter: blur(2px);

}

.login-modal__panel{
    position: relative;
    background: #fff;
    color: #0f172a;
    width: min(640px, 92vw);
    margin: 10vh auto 0;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(2,6,23,.25);
    padding: 28px 28px 32px;
    animation: scaleIn .18s ease;
}

.login-modal__close{
    position: absolute; inset-inline-start: 14px; inset-block-start: 14px;
    border: none; background: transparent; cursor: pointer;
    font-size: 1.3rem; color: #64748b;
}
.login-modal__close:hover{ color:#0f172a; }

.login-modal__title{
    margin: 10px 0 24px;
    text-align: center;
    font-weight: 800;
    font-size: 1.35rem;
    color: #0f172a;
}

.login-modal__cards{
    display: grid; gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 18px;
}

.login-card{
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 18px;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    display: grid; justify-items: center; text-align: center; gap: 12px;
}
.login-card:hover{
    transform: translateY(-4px);
    border-color: #bae6fd;
    box-shadow: 0 12px 34px rgba(2,6,23,.09);
}

.login-card__icon{
    width: 70px; height: 70px; border-radius: 50%;
    display:flex; align-items:center; justify-content:center;
    background: #eff6ff; color: #0ea5e9; font-size: 1.5rem;
}
.login-card__title{ font-weight: 800; font-size: 1.05rem; }
.login-card__desc{ font-size:.9rem; color:#475569; line-height: 1.5; }

.login-view.hidden{ display: none; }

.login-modal__header{
    display:flex; align-items:center; justify-content:space-between;
    margin: 0 0 18px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f1f5f9;
}

.btn-link{
    background: transparent; border: none; color: #0ea5e9; cursor: pointer;
    font-weight: 700; display: inline-flex; align-items:center; gap:6px;
    font-size: .95rem;
}
.btn-link:hover{ text-decoration: underline; }

.login-form{ display: grid; gap: 16px; margin-top: 10px; }
.form-row{ display:grid; gap:8px; text-align: start; direction: rtl; }
.form-row label{ font-weight:700; color:#0f172a; font-size:.95rem; }
.form-row input{
    padding: 12px 14px;
    border-radius: 12px;
    border:1px solid #e2e8f0;
    outline: none;
    font-size: .95rem;
    transition: .2s ease;
}
.form-row input:focus{ border-color:#0ea5e9; box-shadow: 0 0 0 3px #e0f2fe; }

.btn-login,
.btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: .25s ease;
    border: 1px solid transparent;
}

.btn-login {
    background:#0ea5e9;
    color:#fff;
    border-color:transparent;
}
.btn-login:hover { background:#0284c7; }

.btn-signup {
    background:#f1f5f9;
    color:#0f172a;
    border-color:#cbd5e1;
}
.btn-signup:hover {
    background:#e2e8f0;
    border-color:#94a3b8;
}

.btn-login.loading,
.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.btn-login.loading::after,
.btn-primary.loading::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.btn-wide{
    width: 100%;
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 560px){
    .login-modal__panel{ margin-top: 12vh; padding: 22px 18px; }
    .login-modal__cards{ grid-template-columns: 1fr; gap: 14px; }
}
@keyframes fadeIn{from{opacity:0} to{opacity:1}}
@keyframes scaleIn{from{opacity:0; transform: translateY(6px) scale(.97)} to{opacity:1; transform: translateY(0) scale(1)}}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




/* ===== Sidebar ===== */
.sidebar {
    position: fixed;
    top: 60px;
    right: 0;
    height: calc(100vh - 60px);
    width: 240px;
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 14px 12px;
    overflow-y: auto;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05);
    transition: width 0.25s ease, transform 0.25s ease;
    border-radius: 0 !important;
}

.sidebar.collapsed {
    width: 70px;
}
.sidebar.collapsed .sidebar__user-info,
.sidebar.collapsed .stat__label span,
.sidebar.collapsed .nav-item span {
    display: none;
}
.sidebar.collapsed .sidebar__avatar {
    display: block;
    margin: 0 auto;
    transform: translateX(7px);
}
.sidebar.collapsed .nav-item {
    justify-content: center;
    padding: 10px;
}

.sidebar.collapsed .sidebar__stats {
    display: none;
}

/* Tooltip */
.custom-tooltip {
    position: fixed;
    background: #111827;
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}
.custom-tooltip.show {
    opacity: 1;
    transform: translateX(0);
}




body.sidebar-open .dashboard-content {
    margin-inline-end: 240px;
    transition: margin-inline-end .25s ease;
}
body.sidebar-open .dashboard-content.sidebar-collapsed {
    margin-inline-end: 70px;
}
body.sidebar-open .dash-topbar { margin-inline-end: 240px; }

.sidebar__user {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    align-items: center;
    padding: 8px 6px 12px;
}
.sidebar__avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; border: 2px solid #e5e7eb;
}
.sidebar__user-info { min-width: 0; }
.sidebar__user-name {
    font-weight: 800; color:#0f172a; font-size: 14px;
    white-space: wrap; overflow: hidden; text-overflow: ellipsis;
}
.sidebar__user-role { color:#64748b; font-size: 12px; }

.sidebar__stats {
    display: grid; gap: 8px;
    margin-top: 6px; margin-bottom: 10px;
}
.stat {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #0f172a;
    transition: background .2s ease, transform .15s ease, border-color .2s ease;
}
.stat:hover { background:#f1f5f9; transform: translateY(-1px); border-color:#cbd5e1; }
.stat__label { display: inline-flex; align-items: center; gap:8px; font-weight:700; font-size: 13px; color:#334155; }
.stat__value {
    font-weight: 900; font-size: 13px; padding: 4px 8px;
    background:#e0f2fe; color:#0369a1; border-radius: 999px; border:1px solid #bae6fd;
}

.sidebar__divider {
    border: 0; height: 1px; background: #f1f5f9; margin: 12px 2px;
}

.sidebar__nav, .sidebar__bottom { display: grid; gap: 6px; }
.nav-item {
    position: relative;
    display: grid; grid-auto-flow: column; justify-content: start; align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none !important;
    color:#0f172a;
    border: 1px solid transparent;
    font-size: 15px;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.nav-item:hover,
.nav-item:focus,
.nav-item:active {
    text-decoration: none !important;
}

.nav-item i { width: 18px; text-align: center; }
.nav-item:hover { background:#f8fafc; border-color:#e5e7eb; transform: translateY(-1px); }
.nav-item.is-active { background:#e0f2fe; color:#075985; border-color:#bae6fd; font-weight: bold; }

.nav-badge {
    position: absolute;
    inset-inline-start: 10px;
    top: 50%; transform: translateY(-50%);
    font-size: 11px; font-weight: 800;
    padding: 2px 6px; border-radius: 999px;
    background: #fee2e2; color:#b91c1c; border:1px solid #fecaca;
}

.sidebar__spacer { flex: 1; }

@media (min-width: 961px) {
    .sidebar {
        transform: translateX(0) !important;
    }
}

@media (max-width: 960px) {
    .sidebar {
        transform: translateX(100%);
    }
    body.sidebar-open .sidebar {
        transform: translateX(0);
    }
}








/* === Flash === */
.flash-host {
    isolation: isolate;
    position: fixed;
    top: 20px;
    inset-inline: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    padding: 0 20px;
    z-index: 3000;
    pointer-events: none;
}

.flash {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font: 600 15px 'Tajawal', system-ui, sans-serif;
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 280px;
    max-width: 420px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease, filter 0.35s ease;
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
    animation: flash-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
}

.flash::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,.3), transparent 60%);
    transform: translateX(-100%);
    animation: shine 3s infinite linear;
}

.flash-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: #fff;
}

.flash-close {
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.flash-close:hover {
    opacity: 1;
}

/* Success */
.flash-success {
    background: #ecfff6cc;
    color: #0d6845;
    border-color: #b6f0d2;
}
.flash-success .flash-icon {
    background: #16a34a;
}

/* Error */
.flash-error {
    background: #fff5f5cc;
    color: #9f1e16;
    border-color: #f5c2c0;
}
.flash-error .flash-icon {
    background: #dc2626;
}

/* Warning */
.flash-warning {
    background: #fffbea;
    color: #7a5600;
    border-color: #f6e2a1;
}
.flash-warning .flash-icon {
    background: #f59e0b;
}

/* Info */
.flash-info {
    background: #f0f9ffcc;
    color: #075985;
    border-color: #bae6fd;
}
.flash-info .flash-icon {
    background: #2563eb;
}

@keyframes flash-in {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes flash-out {
    to {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        filter: blur(2px);
    }
}
@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}




/* === Error Container === */

body.error-page {
    font-family: "Tajawal", sans-serif;
    background: #f7f9fb;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.error-container {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.error-container h1 {
    font-size: 64px;
    margin-bottom: 20px;
    color: #d9534f;
}

.error-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

.error-container .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.error-container .btn:hover {
    background: #0056b3;
}


/* Overlay بخلفية شفافة + blur */
.loader-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(12px); /* البلور */
    background: rgba(255, 255, 255, 0.25); /* شفافية خفيفة */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
    opacity: 1;
    pointer-events: all;
}

/* إخفاء */
.loader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* محتوى اللودر */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* الشعار مع حركة Pulse */
.loader-logo {
    width: 150px;
    height: auto;
    animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
    0%   { transform: scale(1);   opacity: 1; }
    50%  { transform: scale(1.08); opacity: 0.8; }
    100% { transform: scale(1);   opacity: 1; }
}


/* === Page Content === */

.page-content {
    flex: 1;
    padding: 20px; /* تقدر تغيره حسب الحاجة */
}

.home-page .page-content {
    padding-top: 0;
}


.close-container {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    z-index: 999;
}

.closed-message {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    max-width: 660px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    animation: fadeInUp 0.4s ease;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fee2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    font-size: 2rem;
    color: #dc2626;
}

.closed-message h2 {
    font-size: 1.6rem;
    color: #111827;
    margin-bottom: 8px;
}

.closed-message .subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 20px;
}

.closed-message .dates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.closed-message .date-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.closed-message .date-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.closed-message .date-card h4 {
    font-size: 1rem;
    color: #111827;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.closed-message .date-card h4 i {
    font-size: 1.1rem;
}

.closed-message .date-card.start h4 i {
    color: #16a34a; /* أخضر */
}

.closed-message .date-card.end h4 i {
    color: #dc2626; /* أحمر */
}

.closed-message .date-card p {
    font-size: 0.95rem;
    color: #374151;
    margin: 0;
}


/* === Footer === */
.footer {
    height: 60px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
}

