*{box-sizing:border-box}
body{
    margin:0;
    background:#070c1d;
    color:#edf1ff;
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    font-size:13px;
    line-height:1.45;
}

/* --- SIDEBAR LAYOUT & COLLAPSE --- */
aside{
    position:fixed;
    left:0;
    top:0;
    bottom:0;
    width:240px;
    background:#0b1225;
    border-right:1px solid #202b47;
    padding:16px 10px;
    display:flex;
    flex-direction:column;
    z-index:100;
    transition:width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px;
    padding:0 4px;
}

.brand{
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.brand-logo-icon{
    width:28px;
    height:28px;
    background:linear-gradient(135deg, #6d59ff, #4834d4);
    color:#fff;
    border-radius:7px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:14px;
    flex-shrink:0;
}
.brand span.brand-text{
    margin-left:8px;
    letter-spacing:0.3px;
    color:#fff;
    font-size:13.5px;
    transition:opacity 0.2s, display 0.2s;
}

.toggle-btn{
    background:#16203c;
    border:1px solid #29385e;
    color:#94a0bb;
    width:26px;
    height:26px;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all 0.2s;
    flex-shrink:0;
}
.toggle-btn:hover{
    background:#5142dc;
    color:#fff;
    border-color:#5142dc;
}

/* SIDEBAR SCROLLABLE NAVIGATION */
nav{
    flex:1;
    overflow-y:auto;
    overflow-x:hidden;
    padding-right:0;
    scrollbar-width:none; /* Firefox */
    -ms-overflow-style:none; /* IE and Edge */
}

/* Hide visual scrollbar for WebKit (Chrome, Safari, Edge, iOS) */
nav::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

nav a{
    display:flex;
    align-items:center;
    color:#94a0bb;
    text-decoration:none;
    padding:8px 10px;
    border-radius:8px;
    margin:2px 0;
    font-size:12.5px;
    font-weight:500;
    white-space:nowrap;
    transition:all 0.15s;
}
nav a svg{
    width:16px;
    height:16px;
    flex-shrink:0;
    stroke-width:1.8;
}
nav a span.nav-label{
    margin-left:10px;
    transition:opacity 0.2s;
}
nav a:hover, nav a.active{
    background:#5142dc;
    color:#ffffff;
}
nav a.active svg, nav a:hover svg{
    stroke:#ffffff;
}

.sidebar-footer{
    margin-top:auto;
    padding-top:12px;
    border-top:1px solid #1a2542;
}

.logout-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    background:#151e36;
    color:#f87171;
    border:1px solid #2d3b5e;
    border-radius:8px;
    padding:8px 10px;
    cursor:pointer;
    font-size:12.5px;
    font-weight:600;
    transition:all 0.2s;
}
.logout-btn:hover{
    background:#b91c1c;
    color:#fff;
    border-color:#b91c1c;
}
.logout-btn svg{
    width:15px;
    height:15px;
    flex-shrink:0;
}
.logout-btn span{
    margin-left:8px;
}

/* SIDEBAR COLLAPSED STATE */
body.sidebar-collapsed aside{
    width:64px;
    padding:16px 6px;
}
body.sidebar-collapsed .brand span.brand-text,
body.sidebar-collapsed nav a span.nav-label,
body.sidebar-collapsed .logout-btn span {
    display:none;
}
body.sidebar-collapsed nav a{
    justify-content:center;
    padding:10px;
}
body.sidebar-collapsed .logout-btn{
    justify-content:center;
    padding:10px;
}
body.sidebar-collapsed main{
    margin-left:64px;
}

/* MAIN CONTENT LAYOUT */
main{
    margin-left:240px;
    transition:margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-height:100vh;
}
header{
    height:56px;
    border-bottom:1px solid #202b47;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-weight:600;
    font-size:13.5px;
    background:#070c1d;
}
header h1, header .header-title{
    font-size:15px;
    margin:0;
    font-weight:700;
}

section{padding:20px 24px;max-width:1440px}
h1{font-size:20px;font-weight:700;margin-top:0;letter-spacing:-0.3px}
h2{font-size:15px;font-weight:700;margin:0 0 4px 0}
h3{font-size:13px;font-weight:600}
p{font-size:12.5px;color:#8e9ab4;margin:4px 0 0}

.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px}
.cards>div,.panel{background:#0d1428;border:1px solid #202b47;border-radius:12px;padding:16px;margin:14px 0}
.cards strong{display:block;font-size:22px;margin-top:6px;color:#fff}
.panel{overflow:auto}
.row{display:flex;justify-content:space-between;align-items:center;gap:16px}

/* FILTER TOOLBAR ALIGNMENT */
.filter-toolbar {
    background: #080f20;
    border: 1px solid #1e2c4d;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
}
.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px 12px;
    align-items: end;
}
.filter-group {
    display: flex;
    flex-direction: column;
}
.filter-group label {
    margin: 0 0 4px 0;
    font-size: 10.5px;
    font-weight: 700;
    color: #8e9ab4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.filter-group input, .filter-group select {
    margin-top: 0;
    max-width: 100%;
    padding: 7px 10px;
    font-size: 12px;
    background: #0d162d;
    border: 1px solid #27375a;
    color: #fff;
    border-radius: 7px;
}
.filter-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

/* COLUMN SORT HEADERS */
th.sortable {
    user-select: none;
}
th.sortable a {
    color: #8b99b8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    transition: color 0.2s;
}
th.sortable a:hover {
    color: #ffffff;
}
.sort-icon {
    display: inline-flex;
    flex-direction: column;
    font-size: 8px;
    line-height: 0.9;
    color: #4b587a;
    gap: 1px;
}
.sort-icon .active-arrow {
    color: #6d59ff;
    font-weight: bold;
}

/* PAGINATION FOOTER STYLING */
.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid #1d2740;
    flex-wrap: wrap;
    gap: 10px;
}
.pagination-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #8e9ab4;
}
.entries-select-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}
.entries-select-wrapper select {
    margin: 0;
    padding: 4px 8px;
    font-size: 12px;
    background: #080f20;
    border: 1px solid #27375a;
    color: #fff;
    border-radius: 5px;
    width: auto;
}

/* BUTTONS & BADGES */
.btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#5b49eb;
    color:white;
    border:0;
    border-radius:7px;
    padding:7px 13px;
    text-decoration:none;
    cursor:pointer;
    font-size:12.5px;
    font-weight:600;
    transition:background 0.15s;
}
.btn:hover{background:#4834d4}
.btn-secondary{background:#1a2647;color:#d5ddf6;border:1px solid #2f3e69}
.btn-secondary:hover{background:#283866;color:#fff}
.btn-sm{padding:4px 9px;font-size:11.5px;border-radius:5px}
.btn-danger{background:#991b1b;color:#fff}
.btn-danger:hover{background:#dc2626}
.btn-success{background:#059669;color:#fff}
.btn-success:hover{background:#10b981}

.badge{
    display:inline-block;
    padding:3px 8px;
    border-radius:14px;
    font-size:11px;
    font-weight:600;
    text-transform:capitalize;
}
.badge-admin{background:#312e81;color:#a5b4fc;border:1px solid #4338ca}
.badge-sales{background:#065f46;color:#a7f3d0;border:1px solid #047857}
.badge-manager{background:#7c2d12;color:#ffedd5;border:1px solid #9a3412}
.badge-telecaller{background:#083344;color:#67e8f9;border:1px solid #0e7490}
.badge-support{background:#1e3a8a;color:#bfdbfe;border:1px solid #1d4ed8}
.badge-finance{background:#4a044e;color:#f472b6;border:1px solid #be185d}
.badge-marketing{background:#3b0764;color:#c084fc;border:1px solid #7e22ce}
.badge-custom{background:#1e293b;color:#cbd5e1;border:1px solid #334155}
.badge-active{background:#064e3b;color:#6ee7b7}
.badge-inactive{background:#78350f;color:#fde68a}

.ok,.err{padding:10px 14px;border-radius:7px;margin-bottom:14px;font-weight:500;font-size:12.5px}
.ok{background:#10332c;color:#63e0b8;border:1px solid #175246}
.err{background:#3b1822;color:#ff9eb4;border:1px solid #5c2333}

table{width:100%;border-collapse:collapse}
th,td{text-align:left;padding:10px 12px;border-bottom:1px solid #1d2740}
th{color:#8b99b8;font-size:10.5px;text-transform:uppercase;letter-spacing:0.5px;font-weight:700}
td{color:#e2e8f0;font-size:12.5px}
a{color:#aeb7ff}

label{display:block;margin:10px 0 4px;color:#aab4ca;font-size:12px;font-weight:600}
input,select,textarea{
    display:block;
    width:100%;
    max-width:600px;
    margin-top:4px;
    padding:8px 11px;
    background:#080f20;
    color:white;
    border:1px solid #293653;
    border-radius:7px;
    font-size:12.5px;
    outline:none;
}
input:focus,select:focus,textarea:focus{
    border-color:#6d59ff;
    box-shadow:0 0 0 2px rgba(109,89,255,0.25);
}

.page{display:flex;align-items:center;gap:12px;padding:12px 0;border-bottom:1px solid #202b47}
.page span{color:#8e9ab4;font-size:12px}
.page form{margin-left:auto}

/* TABS */
.tabs{display:flex;gap:10px;border-bottom:1px solid #202b47;margin-bottom:16px}
.tab-btn{
    padding:9px 14px;
    background:none;
    border:none;
    color:#8e9ab4;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    border-bottom:2px solid transparent;
    transition:all 0.2s;
}
.tab-btn:hover{color:#fff}
.tab-btn.active{color:#6d59ff;border-bottom-color:#6d59ff}

/* MODAL STYLES */
.modal-backdrop{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(3, 7, 18, 0.75);
    backdrop-filter:blur(4px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999;
}
.modal-backdrop.show{display:flex}
.modal{
    background:#0d1428;
    border:1px solid #29385e;
    border-radius:14px;
    width:100%;
    max-width:500px;
    padding:20px;
    box-shadow:0 20px 25px -5px rgba(0,0,0,0.5);
}
.modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
}
.modal-header h3{margin:0;font-size:16px;color:#fff}
.modal-close{
    background:none;
    border:none;
    color:#8e9ab4;
    font-size:18px;
    cursor:pointer;
}
.modal-close:hover{color:#fff}
.modal-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-top:20px;
}


/* --- PIPELINE KANBAN BOARD STYLES --- */
.pipeline-board-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 16px;
    margin-top: 10px;
}
.pipeline-board-container::-webkit-scrollbar {
    height: 9px;
}
.pipeline-board-container::-webkit-scrollbar-track {
    background: #080f20;
    border-radius: 6px;
}
.pipeline-board-container::-webkit-scrollbar-thumb {
    background: #202d4d;
    border-radius: 6px;
}
.pipeline-board-container::-webkit-scrollbar-thumb:hover {
    background: #5142dc;
}

.pipeline-board {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-width: max-content;
    padding: 4px 2px 20px 2px;
}

.pipeline-col {
    width: 310px;
    min-width: 310px;
    max-width: 310px;
    background: #0b1225;
    border: 1px solid #1c2742;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 290px);
    min-height: 520px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: border-color 0.2s;
}

.pipeline-col-header {
    padding: 14px 16px;
    border-bottom: 1px solid #19233c;
    border-top: 3px solid #5b49eb;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    background: #0e162c;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.col-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.col-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.col-count {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid #28375c;
    background: #18233e;
    color: #a5b4fc;
}

.col-value {
    font-size: 12px;
    font-weight: 700;
    color: #34d399;
}

.pipeline-col-body {
    padding: 12px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.2s;
}

.pipeline-col-body::-webkit-scrollbar {
    width: 5px;
}
.pipeline-col-body::-webkit-scrollbar-track {
    background: #080f20;
    border-radius: 4px;
}
.pipeline-col-body::-webkit-scrollbar-thumb {
    background: #1e2a47;
    border-radius: 4px;
}
.pipeline-col-body::-webkit-scrollbar-thumb:hover {
    background: #5142dc;
}

.pipeline-col-body.drag-over {
    background: rgba(99, 102, 241, 0.08);
    border: 2px dashed #6366f1;
    border-radius: 0 0 13px 13px;
}

/* PIPELINE CARD */
.pipeline-card {
    background: #111a33;
    border: 1px solid #233154;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: grab;
    user-select: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pipeline-card:hover {
    border-color: #4b5a8c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.pipeline-card.is-dragging {
    opacity: 0.4;
    transform: scale(0.97);
    cursor: grabbing;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.card-lead-name {
    font-weight: 700;
    font-size: 14px;
    color: #f8fafc;
    text-decoration: none;
    line-height: 1.3;
}
.card-lead-name:hover {
    color: #818cf8;
    text-decoration: underline;
}

.card-code {
    font-size: 11px;
    color: #8e9ab4;
    font-family: ui-monospace, monospace;
}

.card-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.card-source-tag {
    background: #18233e;
    border: 1px solid #28375c;
    color: #93c5fd;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: capitalize;
}

.card-priority-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}
.priority-urgent { background: #450a0a; color: #f87171; border: 1px solid #7f1d1d; }
.priority-high { background: #431407; color: #fb923c; border: 1px solid #7c2d12; }
.priority-normal { background: #172554; color: #93c5fd; border: 1px solid #1e40af; }
.priority-low { background: #064e3b; color: #6ee7b7; border: 1px solid #065f46; }

.card-value {
    font-size: 15px;
    font-weight: 700;
    color: #34d399;
}

.card-contact {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #94a3b8;
}
.card-contact a {
    color: #cbd5e1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.card-contact a:hover {
    color: #60a5fa;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #1d2847;
    gap: 6px;
}

.card-stage-select, .card-assignee-select {
    background: #080f20;
    border: 1px solid #253658;
    color: #cbd5e1;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 11px;
    margin: 0;
    width: auto;
    max-width: 130px;
    cursor: pointer;
}
.card-stage-select:focus, .card-assignee-select:focus {
    border-color: #6d59ff;
}

.pipeline-empty-column {
    padding: 36px 12px;
    text-align: center;
    color: #64748b;
    font-size: 12px;
    border: 1px dashed #202d4d;
    border-radius: 8px;
    margin: auto 0;
    background: rgba(13, 20, 40, 0.4);
}

/* TOAST NOTIFICATION */
.crm-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #0f2921;
    border: 1px solid #166534;
    color: #4ade80;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.crm-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* --- DASHBOARD STYLES (MATCHING UI REFERENCE) --- */
.dash-kpi-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.dash-kpi-card {
    background: #0b1225;
    border: 1px solid #1c2742;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 98px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s, transform 0.2s;
}
.dash-kpi-card:hover {
    border-color: #2e3d66;
    transform: translateY(-2px);
}

.dash-kpi-title {
    font-size: 11px;
    font-weight: 600;
    color: #8e9ab4;
    margin-bottom: 4px;
}

.dash-kpi-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.dash-kpi-sub {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.dash-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
    margin-bottom: 20px;
}

.dash-panel {
    background: #0b1225;
    border: 1px solid #1c2742;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.dash-panel-header {
    margin-bottom: 14px;
}

.dash-panel-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px 0;
    letter-spacing: -0.2px;
}

.dash-panel-sub {
    font-size: 12px;
    color: #8e9ab4;
    margin: 0;
}

/* SOURCES LIST */
.source-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #162039;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
}
.source-item:last-child {
    border-bottom: 0;
    padding-bottom: 2px;
}
.source-tag {
    font-size: 10.5px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}

/* TREND BAR CHART */
.dash-chart-box {
    border: 1px solid #1b2642;
    border-radius: 10px;
    background: #080f20;
    padding: 16px 16px 10px;
    margin-top: 8px;
}

.dash-bars-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 140px;
    gap: 10px;
}

.dash-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    gap: 6px;
}

.dash-bar-fill {
    width: 100%;
    max-width: 36px;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, #7c3aed 0%, #4f46e5 100%);
    transition: height 0.4s ease, opacity 0.2s;
    min-height: 16px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    cursor: pointer;
}
.dash-bar-fill:hover {
    opacity: 0.85;
    background: linear-gradient(180deg, #8b5cf6 0%, #6366f1 100%);
}

.dash-bar-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

/* STATUS PILLS */
.pill-status {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}
.pill-new {
    background: #14243b;
    color: #93c5fd;
    border: 1px solid #2563eb;
}
.pill-qualified {
    background: #1e1b4b;
    color: #c7d2fe;
    border: 1px solid #4338ca;
}
.pill-contacted {
    background: #1e1b4b;
    color: #c7d2fe;
    border: 1px solid #4f46e5;
}
.pill-interested {
    background: #082f49;
    color: #7dd3fc;
    border: 1px solid #0284c7;
}
.pill-won {
    background: #064e3b;
    color: #6ee7b7;
    border: 1px solid #059669;
}
.pill-lost {
    background: #450a0a;
    color: #fca5a5;
    border: 1px solid #dc2626;
}

.btn-view-lead {
    background: #131d36;
    border: 1px solid #27375a;
    color: #edf1ff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}
.btn-view-lead:hover {
    background: #5142dc;
    border-color: #5142dc;
    color: #ffffff;
}

@media(max-width:1100px){
    .dash-kpi-grid{grid-template-columns:repeat(3,1fr)}
    .dash-grid-2{grid-template-columns:1fr}
}

@media(max-width:800px){
    aside{transform:translateX(-100%)}
    body.sidebar-open aside{transform:translateX(0);width:240px}
    main{margin-left:0 !important}
    .cards{grid-template-columns:1fr 1fr}
    .dash-kpi-grid{grid-template-columns:1fr 1fr}
    section{padding:18px}
}


