/* ================================================
   ZolviqAdmin - Admin Panel Stylesheet
   ================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #6C3CE1;
    --primary-light: #9D7BF7;
    --primary-dark: #5228B5;
    --secondary: #4F6AF6;
    --accent: #00D4AA;
    --accent-light: #33DFBE;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --text: #333348;
    --text-light: #6b7094;
    --text-muted: #9da3c0;
    --light: #f5f6fa;
    --light-2: #eef0f7;
    --border: #e2e5f1;
    --white: #ffffff;
    --success: #10b981;
    --success-bg: #ecfdf5;
    --warning: #f59e0b;
    --warning-bg: #fffbeb;
    --danger: #ef4444;
    --danger-bg: #fef2f2;
    --info: #3b82f6;
    --info-bg: #eff6ff;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --shadow-sm: 0 1px 3px rgba(26,26,46,0.06);
    --shadow-md: 0 4px 16px rgba(26,26,46,0.08);
    --shadow-lg: 0 8px 30px rgba(26,26,46,0.1);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-w: 260px;
    --topbar-h: 64px;
}

html { font-size: 15px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* --- Layout --- */
.app-layout { display: flex; min-height: 100vh; }

/* --- Sidebar --- */
.sidebar {
    width: var(--sidebar-w);
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    transition: transform var(--transition);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-logo img { height: 32px; }

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
    margin-bottom: 2px;
}

.nav-item i { font-size: 1rem; width: 20px; text-align: center; }

.nav-item:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
}

.nav-item.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(108,60,225,0.3);
}

.nav-section {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    padding: 20px 16px 8px;
    font-weight: 600;
}

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* --- Main Content --- */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-w);
    min-width: 0;
    transition: margin-left var(--transition);
}

/* --- Topbar --- */
.topbar {
    height: var(--topbar-h);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all var(--transition);
    display: none;
}

.sidebar-toggle:hover { background: var(--light); color: var(--text); }

.topbar-right { display: flex; align-items: center; gap: 16px; }

.user-menu { position: relative; }

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background var(--transition);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
}

.user-menu-btn:hover { background: var(--light); }

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.user-menu-btn i { font-size: 0.7rem; color: var(--text-muted); }

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 60;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.dropdown-header strong { display: block; font-size: 0.9rem; }
.dropdown-header small { color: var(--text-muted); font-size: 0.78rem; }

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.88rem;
    color: var(--text);
    transition: background var(--transition);
}

.user-dropdown a:hover { background: var(--light); }
.user-dropdown a i { width: 16px; color: var(--text-muted); }

/* --- Content Area --- */
.content-area { padding: 28px; }

/* --- Page Header --- */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.page-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
}

.page-header h1 small {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 8px;
}

.page-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn i { font-size: 0.8rem; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(108,60,225,0.25);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(108,60,225,0.35); color: #fff; }

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #059669; color: #fff; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; color: #fff; }

.btn-outline {
    background: var(--white);
    border-color: var(--border);
    color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-sm { padding: 6px 14px; font-size: 0.82rem; }
.btn-lg { padding: 14px 28px; font-size: 0.95rem; }
.btn-icon { padding: 8px 10px; }

.btn-group { display: flex; gap: 6px; }

/* --- Cards --- */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.card:hover { box-shadow: var(--shadow-md); }

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.card-header h2 { font-size: 1.05rem; font-weight: 600; }

.card-body { padding: 24px; }
.card-body.p-0 { padding: 0; }

/* --- Stat Cards --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 0 4px 4px 0;
}

.stat-card.purple::after { background: var(--primary); }
.stat-card.teal::after { background: var(--accent); }
.stat-card.blue::after { background: var(--secondary); }
.stat-card.orange::after { background: var(--warning); }
.stat-card.green::after { background: var(--success); }
.stat-card.red::after { background: var(--danger); }

.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-card.purple .stat-icon { background: rgba(108,60,225,0.08); color: var(--primary); }
.stat-card.teal .stat-icon { background: rgba(0,212,170,0.08); color: var(--accent); }
.stat-card.blue .stat-icon { background: rgba(79,106,246,0.08); color: var(--secondary); }
.stat-card.orange .stat-icon { background: rgba(245,158,11,0.08); color: var(--warning); }
.stat-card.green .stat-icon { background: rgba(16,185,129,0.08); color: var(--success); }
.stat-card.red .stat-icon { background: rgba(239,68,68,0.08); color: var(--danger); }

.stat-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2px; }
.stat-info p { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* --- Tables --- */
.table-responsive { overflow-x: auto; }

.data-table {
    width: 100%;
    font-size: 0.88rem;
}

.data-table thead { background: var(--light); }

.data-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.data-table tbody tr {
    transition: background var(--transition);
}

.data-table tbody tr:hover { background: rgba(108,60,225,0.02); }
.data-table tbody tr:last-child td { border-bottom: none; }

.data-table .text-right { text-align: right; }
.data-table .text-center { text-align: center; }
.data-table .nowrap { white-space: nowrap; }

/* --- Badges --- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }
.badge-info { background: var(--info-bg); color: var(--info); }
.badge-secondary { background: var(--light); color: var(--text-muted); }

/* --- Forms --- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid .full-width { grid-column: 1 / -1; }

.form-group { margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group label .required { color: var(--danger); }

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,60,225,0.08);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7094' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

textarea.form-control { resize: vertical; min-height: 100px; }

.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 12px;
    padding-top: 12px;
}

/* --- Filters Bar --- */
.filters-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filters-bar .form-control {
    max-width: 220px;
    padding: 8px 12px;
    font-size: 0.85rem;
}

.search-input {
    position: relative;
}

.search-input input {
    padding-left: 36px;
}

.search-input i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    padding: 20px 0 4px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.page-link:hover { background: var(--light-2); color: var(--primary); }

.page-link.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(108,60,225,0.25);
}

.page-dots { color: var(--text-muted); padding: 0 4px; }

/* --- Alerts --- */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease;
    position: relative;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-success { background: var(--success-bg); color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: var(--danger-bg); color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: var(--info-bg); color: #1e40af; border: 1px solid #bfdbfe; }
.alert-warning { background: var(--warning-bg); color: #92400e; border: 1px solid #fde68a; }

.alert-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.alert-close:hover { opacity: 1; }

/* --- 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 h3 { color: var(--text-light); margin-bottom: 8px; }
.empty-state p { margin-bottom: 20px; }

/* --- Detail Grid --- */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detail-item label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.detail-item .value {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

/* --- Financial Summary --- */
.financial-summary {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
}

.financial-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.financial-row.total {
    border-top: 2px solid var(--border);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 1rem;
}

.financial-row .label { color: var(--text-light); }
.financial-row .amount { font-weight: 600; }
.financial-row .amount.positive { color: var(--success); }
.financial-row .amount.negative { color: var(--danger); }

/* --- Login Page --- */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--dark) 0%, #16213e 50%, #0f3460 100%);
    padding: 20px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo img { height: 40px; margin: 0 auto 12px; }
.login-logo p { color: var(--text-muted); font-size: 0.88rem; }

.login-card h2 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 1.3rem;
}

/* --- Chart / Report Cards --- */
.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.report-table { margin-top: 0; }

/* --- Invoice --- */
.invoice-preview {
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--primary);
}

.invoice-company img { height: 36px; margin-bottom: 12px; }
.invoice-company p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

.invoice-meta { text-align: right; }
.invoice-meta h2 { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.invoice-meta p { font-size: 0.85rem; color: var(--text-light); }
.invoice-meta strong { color: var(--text); }

.invoice-parties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.invoice-parties h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.invoice-parties p { font-size: 0.88rem; color: var(--text); line-height: 1.7; }

.invoice-table { margin-bottom: 32px; }
.invoice-table th { background: var(--light); }
.invoice-table th, .invoice-table td { padding: 12px 16px; font-size: 0.88rem; }

.invoice-totals {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 36px;
}

.invoice-totals table { width: 280px; }
.invoice-totals td { padding: 8px 0; font-size: 0.9rem; }
.invoice-totals .total-row { border-top: 2px solid var(--dark); font-weight: 700; font-size: 1.05rem; }

.invoice-footer {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.invoice-footer h4 { color: var(--text); font-size: 0.82rem; margin-bottom: 8px; }

/* --- Expiry Indicators --- */
.expiry-warning {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--warning);
    font-size: 0.82rem;
    font-weight: 600;
}

.expiry-danger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--danger);
    font-size: 0.82rem;
    font-weight: 600;
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,46,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal-overlay.show { opacity: 1; visibility: visible; }

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform var(--transition);
}

.modal-overlay.show .modal { transform: scale(1); }

.modal h3 { margin-bottom: 12px; }
.modal p { color: var(--text-light); margin-bottom: 24px; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; }

/* --- Print Styles --- */
@media print {
    .sidebar, .topbar, .page-header, .no-print { display: none !important; }
    .main-content { margin-left: 0 !important; }
    .content-area { padding: 0 !important; }
    .invoice-preview { border: none; box-shadow: none; padding: 0; }
    body { background: #fff; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open { transform: translateX(0); }

    .main-content { margin-left: 0; }
    .sidebar-toggle { display: block; }

    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .sidebar-overlay.show { opacity: 1; visibility: visible; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .report-grid { grid-template-columns: 1fr; }
    .invoice-preview { padding: 24px; }
}

@media (max-width: 640px) {
    .content-area { padding: 16px; }
    .stats-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .page-header { flex-direction: column; align-items: flex-start; }
    .filters-bar { flex-direction: column; }
    .filters-bar .form-control { max-width: 100%; }
    .invoice-parties { grid-template-columns: 1fr; }
    .invoice-header { flex-direction: column; }
    .invoice-meta { text-align: left; margin-top: 20px; }
}

/* --- Utility --- */
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.d-flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
