/* ===== Chalan System - Global Styles ===== */
:root {
    --primary: #0d9488;
    --primary-dark: #047872;
    --primary-light: #ccfbf1;
    --accent: #0ea5e9;
    --accent-dark: #0284c7;
    --bg: #f3f7fa;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --success: #059669;
    --warning: #f59e0b;
    --danger: #ef4444;
    --danger-dark: #dc2626;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.2s ease;
}

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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Noto Sans Bengali', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* ===== Login Page ===== */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0c4a46 0%, #0d9488 50%, #0ea5e9 100%);
    padding: 20px;
    position: relative;
}
.login-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.login-box {
    background: var(--card);
    border-radius: 16px;
    padding: 45px 40px;
    width: 100%;
    max-width: 430px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    z-index: 1;
}
.login-box h1 { color: var(--primary); margin-bottom: 6px; font-size: 26px; font-weight: 800; }
.login-box .subtitle { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.login-box .form-group { margin-bottom: 18px; text-align: left; }
.login-box .form-group label { display: block; margin-bottom: 5px; font-weight: 700; color: var(--text); font-size: 13px; }
.login-box .form-group input {
    width: 100%; padding: 13px 14px; border: 2px solid var(--border);
    border-radius: var(--radius-sm); font-size: 15px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.login-box .form-group input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(13,148,136,0.1); }
.login-box .btn-login { width: 100%; padding: 14px; margin-top: 12px; font-size: 15px; border-radius: var(--radius-sm); }

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

/* Sidebar */
.sidebar {
    width: 270px;
    background: linear-gradient(180deg, #0c4a46 0%, #0f766e 40%, #0d9488 100%);
    color: white;
    padding: 0;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
.sidebar-header {
    padding: 22px 20px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    background: rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.sidebar-header h1 { font-size: 19px; margin-bottom: 3px; letter-spacing: 0.5px; }
.sidebar-header .company { font-size: 11px; opacity: 0.7; letter-spacing: 0.3px; }

.sidebar-nav { padding: 8px 0; flex: 1; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) transparent; }
.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
.nav-section { padding: 0 10px; margin-top: 12px; }
.nav-section:first-child { margin-top: 6px; }
.nav-section-title { font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; opacity: 0.5; padding: 0 10px; margin-bottom: 4px; font-weight: 600; }

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 8px;
    margin: 1px 6px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    position: relative;
}
.nav-item:hover { background: rgba(255,255,255,0.12); color: white; }
.nav-item.active {
    background: rgba(255,255,255,0.2);
    font-weight: 700;
    color: white;
    box-shadow: inset 3px 0 0 white;
}
.nav-item .nav-icon { width: 22px; text-align: center; font-size: 15px; opacity: 0.9; }

.sidebar-footer {
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
    flex-shrink: 0;
    background: rgba(0,0,0,0.12);
}
.sidebar-footer .user-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sidebar-footer .user-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px;
    border: 2px solid rgba(255,255,255,0.3);
}

/* Main Content */
.main-content {
    margin-left: 270px;
    flex: 1;
    padding: 24px 30px;
    min-height: 100vh;
    background: var(--bg);
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.top-bar h2 { font-size: 20px; color: var(--text); font-weight: 700; }
.top-bar-actions { display: flex; gap: 8px; align-items: center; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: var(--primary);
    color: white;
    border: 0;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 18px;
}

/* ===== Cards ===== */
.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow var(--transition);
}
.card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.card-header h3 { font-size: 16px; color: var(--text); font-weight: 700; }
.card-body { }

/* ===== Grid Stats ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}
.stat-card {
    padding: 20px 16px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stat-card:hover::before { opacity: 1; }
.stat-label { font-size: 11px; color: var(--muted); font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-value { font-size: 22px; font-weight: 800; color: var(--primary); line-height: 1.2; }
.stat-value.profit { color: var(--success); }
.stat-value.danger { color: var(--danger); }
.stat-value.warning { color: var(--warning); }
.stat-value.accent { color: var(--accent); }

/* ===== Forms ===== */
.form-row { display: flex; gap: 15px; margin-bottom: 12px; flex-wrap: wrap; }
.form-group { flex: 1; min-width: 180px; }
.form-group label { display: block; margin-bottom: 4px; font-weight: 600; font-size: 13px; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
.form-group input[readonly] { background: #f9fafb; color: var(--muted); }
.form-group .input-hint { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    border: 0;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: background var(--transition), transform 0.1s;
    text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: #047857; }
.btn-warning { background: var(--warning); color: white; }
.btn-warning:hover { background: #d97706; }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: var(--danger-dark); }
.btn-ghost { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-ghost:hover { background: var(--primary-light); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 14px 24px; font-size: 16px; }

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

/* ===== Tables ===== */
.table-container { overflow-x: auto; margin-top: 10px; }
table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; }
th, td { border: 1px solid var(--border); padding: 10px 12px; text-align: center; }
th {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    position: sticky;
    top: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
tr:nth-child(even) { background: #f9fafb; }
tr:hover { background: #f0f9ff; }
td.text-right { text-align: right; }
td.text-left { text-align: left; }
td.profit-positive { color: var(--success); font-weight: 700; }
td.profit-negative { color: var(--danger); font-weight: 700; }
td.stock-ok { color: var(--primary-dark); font-weight: 700; }
td.stock-empty { color: var(--danger); font-weight: 700; }

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    padding: 10px 0;
}
.pagination button {
    padding: 6px 12px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all var(--transition);
}
.pagination button:hover { border-color: var(--primary); color: var(--primary); }
.pagination button.active { background: var(--primary); color: white; border-color: var(--primary); }
.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination .page-info { font-size: 13px; color: var(--muted); padding: 0 10px; }

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
    background: white;
    border-radius: var(--radius);
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 18px; }
.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--muted);
    padding: 0 5px;
}
.modal-close:hover { color: var(--danger); }
.modal-body { padding: 25px; }
.modal-footer {
    padding: 15px 25px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* ===== Alerts / Toast ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toast {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
    max-width: 400px;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); }
.toast.info { background: var(--accent); }

@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

/* ===== Info Box ===== */
.info-box {
    padding: 12px 15px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 6px;
    font-size: 13px;
    color: #9a3412;
    margin: 10px 0;
}
.info-box.success { background: #ecfdf5; border-color: #6ee7b7; color: #065f46; }
.info-box.danger { background: #fef2f2; border-color: #fca5a5; color: #991b1b; }

/* ===== Purchase Linker Items ===== */
.purchase-item {
    padding: 12px 15px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.purchase-item:hover { background: #f0f9ff; border-color: var(--accent); transform: translateX(4px); }
.purchase-item .purchase-info { font-size: 14px; }
.purchase-item .purchase-info strong { color: var(--primary); }
.purchase-item .purchase-info .meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.purchase-item .purchase-value { font-weight: 700; color: var(--primary); font-size: 16px; }

/* ===== Party List Items ===== */
.party-item {
    padding: 12px 15px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.party-item .party-info strong { color: var(--primary); }
.party-item .party-info p { margin: 2px 0; font-size: 13px; color: var(--muted); }
.party-actions { display: flex; gap: 5px; }

/* ===== Activity Feed ===== */
.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.activity-item:last-child { border-bottom: none; }
.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.activity-icon.purchase { background: #dbeafe; color: #2563eb; }
.activity-icon.sale { background: #d1fae5; color: #059669; }
.activity-icon.payment { background: #fef3c7; color: #d97706; }
.activity-info { flex: 1; }
.activity-info .activity-title { font-size: 13px; font-weight: 600; }
.activity-info .activity-meta { font-size: 11px; color: var(--muted); }
.activity-amount { font-weight: 700; font-size: 14px; }

/* ===== Loading Spinner ===== */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}
.spinner.dark { border-color: rgba(0,0,0,0.1); border-top-color: var(--primary); }
@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}
.loading-overlay.active { display: flex; }

/* ===== Tab Navigation ===== */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 15px; }
.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
}
.tab:hover { color: var(--primary); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.filter-bar .form-group { min-width: 150px; }

/* ===== Chart Placeholder ===== */
.chart-container {
    width: 100%;
    height: 300px;
    background: #f9fafb;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border);
    position: relative;
    overflow: hidden;
}

/* Simple bar chart CSS */
.bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 100%; padding: 20px 10px 30px; width: 100%; }
.bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; height: 100%; justify-content: flex-end; }
.bar {
    width: 100%;
    max-width: 40px;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
    min-height: 2px;
}
.bar.sales-bar { background: var(--accent); }
.bar.profit-bar { background: var(--success); }
.bar-label { font-size: 10px; color: var(--muted); margin-top: 4px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 60px; }

/* ===== Print Styles ===== */
@media print {
    .sidebar, .top-bar, .btn, .nav-item, .filter-bar, .pagination, .toast-container { display: none !important; }
    .main-content { margin-left: 0; padding: 0; }
    body { background: white; }
    .card { box-shadow: none; border: 1px solid #ddd; }
    th { background: #eee !important; color: #333 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0 !important; padding: 15px; }
    .menu-toggle { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { flex-direction: column; }
    .form-group { min-width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .btn-group { flex-direction: column; }
    .top-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
    .top-bar-actions { width: 100%; }
    .party-item { flex-direction: column; align-items: flex-start; gap: 10px; }
    .modal { max-width: 100%; margin: 10px; }
    .filter-bar { flex-direction: column; }
    table { font-size: 11px; }
    th, td { padding: 6px 4px; }
    .tabs { overflow-x: auto; }
    .tab { white-space: nowrap; padding: 8px 14px; font-size: 13px; }
}

/* ===== Documentation / Help Section ===== */
.docs-container { max-width: 900px; }
.docs-section {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    transition: all 0.2s ease;
}
.docs-section:hover { border-left-color: var(--accent); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.docs-section h3 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.docs-section h3 .doc-icon { font-size: 20px; }
.docs-section .doc-bn { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 10px; }
.docs-section .doc-en { font-size: 13px; color: var(--muted); line-height: 1.7; font-style: italic; }
.docs-section .doc-steps { list-style: none; padding: 0; margin: 10px 0; }
.docs-section .doc-steps li {
    padding: 8px 12px 8px 36px;
    position: relative;
    font-size: 13px;
    line-height: 1.6;
    border-bottom: 1px solid #f3f4f6;
}
.docs-section .doc-steps li:last-child { border-bottom: none; }
.docs-section .doc-steps li::before {
    content: attr(data-step);
    position: absolute;
    left: 0; top: 8px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}
.docs-toc {
    background: #f8fafc;
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}
.docs-toc h4 { font-size: 14px; color: var(--primary); margin-bottom: 10px; }
.docs-toc a {
    display: block;
    padding: 5px 0;
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px dotted var(--border);
}
.docs-toc a:hover { color: var(--primary); }
.docs-toc a:last-child { border-bottom: none; }

.docs-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.docs-badge.bn { background: #dbeafe; color: #1e40af; }
.docs-badge.en { background: #fef3c7; color: #92400e; }

/* ===== Enhanced Filter Bar ===== */
.filter-bar {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-wrap: wrap;
    padding: 16px 18px;
    background: white;
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-sm { font-size: 12px; }
.text-lg { font-size: 18px; }
.font-bold { font-weight: 700; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-end { display: flex; justify-content: flex-end; gap: 8px; }
.gap-10 { gap: 10px; }
.hidden { display: none !important; }
.w-full { width: 100%; }
