/* =========================
   RESET
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: #1f2937;
    background: #f4f7fb;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* =========================
   LOGIN PAGE
   ========================= */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #17388f 0%, #2f5fe3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.login-layout {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 64px;
}

.login-intro {
    color: #ffffff;
    max-width: 520px;
}

.login-badge-new {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.login-intro h1 {
    margin: 0 0 14px;
    font-size: 54px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
}

.login-intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.login-right {
    display: flex;
    justify-content: center;
}

.login-card {
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 30px;
    box-shadow: 0 20px 50px rgba(13, 27, 75, 0.28);
}

.login-header {
    margin-bottom: 24px;
}

.login-header h2 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.2;
    color: #111827;
    font-weight: 700;
}

.login-header p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.login-form .form-group {
    margin-bottom: 18px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.login-form input {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #d6dce8;
    border-radius: 12px;
    font-size: 14px;
    color: #111827;
    background: #f8fafc;
    outline: none;
    transition: 0.2s ease;
}

.login-form input:focus {
    border-color: #2f5fe3;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(47, 95, 227, 0.12);
}

.btn-login {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: #2f5fe3;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-login:hover {
    background: #234ec7;
}

.login-footer {
    margin-top: 22px;
    text-align: center;
}

.login-footer p {
    margin: 0;
    font-size: 12px;
    color: #9ca3af;
}

/* =========================
   ALERT
   ========================= */
.alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* =========================
   MAIN LAYOUT
   ========================= */
.admin-body {
    min-height: 100vh;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.main-content {
    flex: 1;
    padding: 30px;
}

/* =========================
   SIDEBAR
   ========================= */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #0f172a, #111827);
    color: #fff;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.08);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.brand-text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.brand-text p {
    font-size: 13px;
    color: #94a3b8;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 14px;
    border-radius: 18px;
    margin-bottom: 28px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #93c5fd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.user-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 12px;
    color: #cbd5e1;
    text-transform: capitalize;
}

.menu-title {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.sidebar-menu ul li {
    margin-bottom: 10px;
}

.sidebar-menu ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #dbeafe;
    border-radius: 14px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.sidebar-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.sidebar-menu ul li a.active {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

/* =========================
   TOPBAR / PAGE
   ========================= */
.topbar,
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    background: #fff;
    padding: 24px 28px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.topbar h1,
.page-header h1 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 6px;
}

.topbar p,
.page-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* =========================
   DASHBOARD
   ========================= */
.dashboard-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    border: 1px solid #dbeafe;
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.dashboard-hero h1 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 10px;
}

.dashboard-hero p {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
    max-width: 760px;
}

.dashboard-hero-badge {
    min-width: 260px;
    background: #0f172a;
    color: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 13px;
    line-height: 1.7;
}

.dashboard-hero-badge span {
    display: block;
    color: #93c5fd;
    margin-bottom: 6px;
    font-weight: 500;
}

.dashboard-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 26px;
}

.dashboard-panel,
.dashboard-flow-card,
.content-card,
.stat-card,
.table-card,
.form-card,
.detail-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.panel-head h3,
.dashboard-flow-card h3,
.content-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 4px;
}

.panel-head p,
.content-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}

.flow-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.flow-step {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: #1d4ed8;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.flow-arrow {
    color: #64748b;
    font-weight: 700;
    font-size: 18px;
}

.badge-info-soft {
    background: #e0f2fe;
    color: #075985;
}

.badge-success-soft {
    background: #dcfce7;
    color: #166534;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    margin-bottom: 26px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.stat-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-info h3 {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 6px;
}

.stat-info h2 {
    font-size: 28px;
    color: #0f172a;
    font-weight: 700;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
}

.status-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #475569;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 14px;
    color: #64748b;
}

.btn-logout-footer {
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-logout-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.25);
}

/* =========================
   FORM
   ========================= */
.form-grid,
.filter-grid,
.kategori-grid,
.detail-grid {
    display: grid;
    gap: 18px;
}

.form-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.filter-grid,
.kategori-grid,
.detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group textarea,
.form-group select,
input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    outline: none;
    background: #fff;
    font-size: 14px;
    transition: 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
input[type="file"]:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-action,
.filter-action {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.filter-wrap {
    display: flex;
    gap: 12px;
    align-items: end;
    flex-wrap: wrap;
}

.no-margin {
    margin-bottom: 0;
}

/* =========================
   BUTTONS / BADGE
   ========================= */
.btn-primary,
.btn-secondary,
.btn-warning,
.btn-danger,
.btn-info {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.btn-primary,
button.btn-secondary,
button.btn-warning,
button.btn-danger,
button.btn-info {
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
    background: #e2e8f0;
    color: #1e293b;
}

.btn-secondary:hover {
    background: #cbd5e1;
}

.btn-warning {
    background: #f59e0b;
    color: #fff;
}

.btn-warning:hover {
    background: #d97706;
}

.btn-danger {
    background: #ef4444;
    color: #fff;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-info {
    background: #0ea5e9;
    color: #fff;
}

.btn-info:hover {
    background: #0284c7;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* =========================
   TABLE
   ========================= */
.table-responsive,
.table-print-wrap,
.quotation-blind-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.custom-table,
.quotation-blind-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table thead tr {
    background: #f8fafc;
}

.custom-table th,
.custom-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    font-size: 14px;
}

.custom-table th {
    color: #334155;
    background: #f8fafc;
    font-weight: 600;
}

.custom-table td {
    color: #475569;
}

.text-center {
    text-align: center;
}

/* =========================
   KATEGORI / DETAIL
   ========================= */
.kategori-card {
    display: block;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.2s ease;
}

.kategori-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
    border-color: #93c5fd;
}

.kategori-card h3 {
    margin: 0 0 8px;
    color: #0f172a;
}

.kategori-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.detail-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
}

.detail-item span {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.detail-item strong {
    font-size: 16px;
    color: #0f172a;
}

.detail-description h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.detail-description p {
    color: #475569;
    line-height: 1.8;
}

/* =========================
   QUOTATION BLIND
   ========================= */
.quotation-blind-paper {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
}

.quotation-blind-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.quotation-blind-title h1 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 6px;
}

.quotation-blind-title p {
    color: #64748b;
    font-size: 14px;
}

.quotation-blind-meta {
    width: 360px;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    background: #f8fafc;
    padding: 16px 18px;
    font-size: 14px;
    color: #334155;
    line-height: 1.8;
}

.quotation-blind-table {
    min-width: 1200px;
}

.quotation-blind-table th,
.quotation-blind-table td {
    border: 1px solid #cbd5e1;
    padding: 12px 10px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

.quotation-blind-table th {
    background: #eff6ff;
    color: #1e293b;
    font-weight: 600;
}

.quotation-blind-table td {
    color: #334155;
}

.quotation-blind-image {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
}

.quotation-blind-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 18px;
}

.quotation-blind-notes {
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    background: #fff;
    padding: 20px;
}

.quotation-blind-notes h3 {
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 18px;
}

.quotation-blind-notes ol {
    padding-left: 20px;
}

.quotation-blind-notes li {
    margin-bottom: 10px;
    color: #334155;
    line-height: 1.7;
    font-size: 14px;
}

.quotation-blind-summary {
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    background: #f8fafc;
    padding: 18px;
    height: fit-content;
}

.quotation-blind-summary table {
    width: 100%;
    border-collapse: collapse;
}

.quotation-blind-summary td {
    padding: 8px 4px;
    font-size: 14px;
    color: #334155;
}

.quotation-grand-total td {
    font-weight: 700;
    color: #0f172a;
    border-top: 1px solid #cbd5e1;
    padding-top: 12px;
}

.quotation-blind-signature {
    margin-top: 36px;
    display: flex;
    justify-content: flex-start;
}

.signature-customer {
    width: 260px;
    text-align: center;
    color: #334155;
    font-size: 14px;
}

.signature-space {
    height: 90px;
}

.quotation-blind-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

/* =========================
   INVOICE & TRACKING
   ========================= */
.invoice-page,
.tracking-page {
    max-width: 1200px;
    margin: 0 auto;
}

.invoice-action,
.tracking-header-action {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.invoice-shell {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
}

.invoice-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 20px;
}

.invoice-topbar h1 {
    font-size: 32px;
    color: #0f172a;
    margin: 0 0 6px;
    font-weight: 700;
}

.invoice-topbar p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.invoice-code-box {
    min-width: 230px;
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 16px 18px;
    text-align: right;
}

.invoice-code-box .code {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.invoice-code-box .date {
    font-size: 14px;
    color: #64748b;
}

.invoice-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 22px 0;
}

.invoice-card,
.tracking-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
}

.invoice-card h3,
.tracking-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #0f172a;
    font-weight: 700;
}

.invoice-card .small-title {
    margin: 0 0 10px;
    font-size: 15px;
    color: #0f172a;
    font-weight: 700;
}

.invoice-meta {
    color: #475569;
    line-height: 1.8;
    font-size: 14px;
}

.invoice-meta strong {
    color: #0f172a;
}

.section-title {
    margin: 24px 0 12px;
    font-size: 18px;
    color: #0f172a;
    font-weight: 700;
}

.invoice-table-wrap,
.tracking-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.invoice-table,
.tracking-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.invoice-table thead tr,
.tracking-table thead tr {
    background: #f8fafc;
}

.invoice-table th,
.invoice-table td,
.tracking-table th,
.tracking-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
}

.invoice-table th,
.tracking-table th {
    color: #334155;
    font-weight: 600;
    white-space: nowrap;
}

.invoice-table td,
.tracking-table td {
    color: #475569;
}

.invoice-table tbody tr:last-child td,
.tracking-table tbody tr:last-child td {
    border-bottom: none;
}

.summary-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

.summary-row strong {
    color: #0f172a;
}

.summary-total {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid #cbd5e1;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.summary-total .amount {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.payment-note {
    margin: 0;
    padding-left: 18px;
    color: #475569;
    line-height: 1.9;
    font-size: 14px;
}

.rekening-note {
    color: #334155;
    line-height: 1.9;
    font-size: 14px;
}

.status-badge,
.tracking-badge,
.payment-badge {
    display: inline-block;
    min-width: 84px;
    text-align: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.signature-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    text-align: center;
    align-items: end;
}

.signature-title {
    font-weight: 700;
    color: #334155;
    margin-bottom: 12px;
}

.signature-line {
    border-top: 1px solid #94a3b8;
    padding-top: 8px;
    color: #475569;
}

.service-text {
    margin-top: 20px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #dc2626;
    font-style: italic;
}

.tracking-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 22px;
    margin-top: 22px;
}

.tracking-meta {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 8px 14px;
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}

.tracking-meta .label {
    color: #64748b;
    font-weight: 500;
}

.tracking-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.summary-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.summary-item .label {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.summary-item .value {
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
}

.section-space {
    margin-top: 22px;
}

.tracking-card .form-group {
    margin-bottom: 16px;
}

.tracking-card .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.tracking-card .form-group small {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 992px) {
    .dashboard-hero,
    .quotation-blind-top,
    .invoice-topbar {
        flex-direction: column;
    }

    .dashboard-hero-badge,
    .quotation-blind-meta {
        width: 100%;
        min-width: unset;
    }

    .sidebar {
        width: 240px;
    }

    .content-grid,
    .quotation-blind-bottom,
    .invoice-grid-2,
    .tracking-grid,
    .tracking-summary,
    .tracking-card .form-grid-2,
    .signature-box {
        grid-template-columns: 1fr;
    }

    .invoice-code-box {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 900px) {
    .login-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 460px;
    }

    .login-intro {
        text-align: center;
        max-width: 100%;
    }

    .login-intro h1 {
        font-size: 38px;
    }

    .login-intro p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .admin-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .main-content {
        padding: 20px;
    }

    .topbar,
    .page-header {
        padding: 20px;
    }

    .footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .invoice-shell,
    .invoice-card,
    .tracking-card {
        padding: 18px;
    }

    .invoice-topbar h1 {
        font-size: 28px;
    }

    .summary-total,
    .summary-total .amount {
        font-size: 18px;
    }

    .service-text {
        font-size: 22px;
    }

    .tracking-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .login-page {
        padding: 18px;
    }

    .login-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .login-header h2 {
        font-size: 22px;
    }

    .login-intro h1 {
        font-size: 32px;
    }
}

/* =========================
   PRINT / PDF STYLE UMUM
   ========================= */
@media print {
    @page {
        size: A4 landscape;
        margin: 6mm;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    html,
    body {
        width: 100%;
        height: auto;
        background: #fff !important;
        color: #000 !important;
        font-size: 9.5px !important;
        line-height: 1.25 !important;
    }

    .no-print,
    .sidebar,
    .navbar,
    .topbar,
    .page-header,
    .footer,
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-info,
    .btn-warning,
    .btn-danger,
    .quotation-blind-actions,
    .tracking-header-action,
    .invoice-action,
    a[href]:after {
        display: none !important;
    }

    .content-wrapper,
    .main-content,
    .table-card,
    .form-card,
    .detail-card,
    .quotation-blind-paper,
    .quotation-blind-notes,
    /* .quotation-blind-summary {
        background: #fff !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    } */
     .quotation-blind-summary {
        float: none !important;
        position: static !important;
        clear: none !important;
    }

    .content-wrapper,
    .main-content {
        margin: 0 !important;
        padding: 0 !important;
    }

    .table-card,
    .form-card {
        margin: 0 0 6px 0 !important;
        padding: 0 !important;
    }

    .table-print-wrap,
    .table-responsive,
    .quotation-blind-table-wrap {
        overflow: visible !important;
    }

    .print-header-box {
        background-color: #f3f6fb !important;
        border: 1px solid #999 !important;
        border-radius: 6px !important;
        padding: 8px 10px !important;
        margin-bottom: 6px !important;
        font-size: 9px !important;
        line-height: 1.35 !important;
    }

    .print-header-box h1,
    .print-header-box h2,
    .print-header-box h3,
    .print-header-box p {
        margin: 0 0 3px 0 !important;
    }

    .custom-table {
        width: 100% !important;
        border-collapse: collapse !important;
        table-layout: auto !important;
        font-size: 8.5px !important;
        margin: 0 !important;
    }

    .custom-table thead {
        display: table-header-group !important;
    }

    .custom-table thead th {
        background-color: #e9eef5 !important;
        color: #000 !important;
    }

    .custom-table tbody tr:nth-child(even) {
        background-color: #f7f9fc !important;
    }

    .custom-table th,
    .custom-table td {
        border: 1px solid #888 !important;
        padding: 4px 5px !important;
        vertical-align: middle !important;
    }

    .custom-table th {
        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        text-align: center !important;
        font-weight: 700 !important;
    }

    .custom-table td {
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }

    .custom-table tr,
    .quotation-blind-bottom,
    h1, h2, h3, h4, h5, h6,
    p, div, table, td, th {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }

    .custom-table th:last-child,
    .custom-table td:last-child {
        display: none !important;
    }

    .quotation-blind-bottom {
        display: flex !important;
        gap: 10px !important;
        align-items: flex-start !important;
        margin-top: 8px !important;
    }

    .quotation-blind-notes {
        width: 64% !important;
        background-color: #f9fafc !important;
        border: 1px solid #999 !important;
        border-radius: 6px !important;
        padding: 8px 10px !important;
        font-size: 8.8px !important;
        line-height: 1.35 !important;
    }

    .quotation-blind-notes h3 {
        margin: 0 0 6px 0 !important;
        font-size: 10px !important;
    }

    .quotation-blind-notes ol {
        margin: 0 0 0 16px !important;
        padding: 0 !important;
    }

    .quotation-blind-notes li {
        margin-bottom: 3px !important;
    }

    .quotation-blind-summary {
        width: 36% !important;
        background-color: #f3f6fb !important;
        border: 1px solid #999 !important;
        border-radius: 6px !important;
        padding: 8px 10px !important;
        font-size: 9px !important;
    }

    .quotation-blind-summary table {
        width: 100% !important;
        border-collapse: collapse !important;
    }

    .quotation-blind-summary td {
        padding: 3px 0 !important;
        vertical-align: top !important;
    }

    .quotation-grand-total,
    .quotation-grand-total tr,
    .quotation-grand-total td {
        background: #fff !important;
    }

    .quotation-grand-total td {
        border-top: 1px solid #888 !important;
        padding-top: 4px !important;
        font-weight: 600 !important;
        font-size: 12px !important;
        color: #000 !important;
    }
    @media print {
    .quotation-blind-bottom {
        display: grid !important;
        grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr) !important;
        gap: 16px !important;
        align-items: start !important;
        width: 100% !important;
        margin-top: 10px !important;
    }

    .quotation-blind-notes {
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .quotation-blind-summary {
        grid-column: 2 !important;
        grid-row: 1 !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        align-self: start !important;
    }
}

    textarea,
    .print-catatan {
        width: 100% !important;
        min-height: 40px !important;
        max-height: 60px !important;
        border: 1px solid #999 !important;
        padding: 6px !important;
        resize: none !important;
        overflow: hidden !important;
        white-space: pre-wrap !important;
        font-size: 8.5px !important;
        line-height: 1.25 !important;
    }

    .print-signature {
        margin-top: 18px !important;
        font-size: 9px !important;
    }

    .print-signature-space {
        height: 42px !important;
    }
}

/* =========================
   PRINT / PDF QUOTATION GORDEN FIX FINAL
   ========================= */
@media print {
    @page {
        size: A4 landscape;
        margin: 7mm;
    }

    * {
        box-sizing: border-box !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    html,
    body {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        color: #000 !important;
        font-size: 9px !important;
        line-height: 1.2 !important;
        overflow: visible !important;
    }
     /* .no-print {
        display: none !important;
    } */


    .sidebar,
    .navbar,
    .topbar,
    .page-header,
    .footer,
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-info,
    .btn-warning,
    .btn-danger,
    .quotation-blind-actions,
    .tracking-header-action,
    .invoice-action,
    a[href]:after {
        display: none !important;
    }

    .admin-wrapper,
    .main-wrapper,
    .content-wrapper,
    .main-content,
    .table-card,
    .form-card,
    .detail-card,
    .quotation-blind-paper {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        overflow: visible !important;
    }

    /* WAJIB: hilangkan jarak besar bagian atas */
    .quotation-blind-paper > * {
        margin-top: 0 !important;
    }

    .quotation-blind-header,
    .print-header,
    .quotation-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
        page-break-after: avoid !important;
        break-after: avoid !important;
    }

    .print-header-box {
        background-color: #f3f6fb !important;
        border: 1px solid #999 !important;
        border-radius: 6px !important;
        padding: 8px 10px !important;
        margin: 0 !important;
        font-size: 9px !important;
        line-height: 1.25 !important;
        max-width: 310px !important;
    }

    .print-header-box h1,
    .print-header-box h2,
    .print-header-box h3,
    .print-header-box p {
        margin: 0 0 3px 0 !important;
    }

    .table-print-wrap,
    .table-responsive,
    .quotation-blind-table-wrap {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        page-break-before: avoid !important;
        break-before: avoid !important;
    }

    .custom-table {
        width: 100% !important;
        max-width: 100% !important;
        border-collapse: collapse !important;
        table-layout: fixed !important;
        font-size: 7.3px !important;
        margin: 0 !important;
        page-break-before: avoid !important;
        break-before: avoid !important;
    }

    .custom-table thead {
        display: table-header-group !important;
    }

    .custom-table thead th {
        background-color: #e9eef5 !important;
        color: #000 !important;
    }

    .custom-table th,
    .custom-table td {
        border: 1px solid #888 !important;
        padding: 3px 3px !important;
        vertical-align: middle !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
    }

    .custom-table th {
        font-weight: 700 !important;
    }

    .custom-table tbody tr:nth-child(even) {
        background-color: #f7f9fc !important;
    }

    .custom-table th:last-child,
    .custom-table td:last-child {
        display: none !important;
    }

    /* NOTES + TOTAL */
   /* NOTES + GRAND TOTAL */
.quotation-blind-bottom {
    display: grid !important;
    grid-template-columns: 1fr 32% !important;
    column-gap: 14px !important;
    align-items: start !important;
    width: 100% !important;
    margin-top: 8px !important;
    padding: 0 !important;
}

.quotation-blind-notes {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    background-color: #f9fafc !important;
    border: 1px solid #999 !important;
    border-radius: 6px !important;
    padding: 8px 10px !important;
    font-size: 9px !important;
    line-height: 1.35 !important;
}

.quotation-blind-notes h3 {
    margin: 0 0 5px 0 !important;
    font-size: 8px !important;
    font-weight: 700 !important;
}

.quotation-blind-notes ol {
    margin: 0 0 0 16px !important;
    padding: 0 !important;
}

.quotation-blind-notes li {
    margin-bottom: 3px !important;
    white-space: normal !important;
    word-break: normal !important;
}

.quotation-blind-summary {
    width: 100% !important;
    max-width: none !important;
    background-color: #f3f6fb !important;
    border: 1px solid #999 !important;
    border-radius: 6px !important;
    padding: 8px 10px !important;
    font-size: 9px !important;
    line-height: 1.3 !important;
}

.quotation-blind-summary table {
    width: 100% !important;
    border-collapse: collapse !important;
}

.quotation-blind-summary td {
    padding: 3px 0 !important;
    font-size: 9px !important;
    vertical-align: top !important;
}

.quotation-grand-total,
.quotation-grand-total tr,
.quotation-grand-total td {
    background: #fff !important;
}

.quotation-grand-total td {
    border-top: 1px solid #888 !important;
    padding-top: 4px !important;
    font-weight: 700 !important;
    font-size: 9px !important;
}

    textarea,
    .print-catatan {
        width: 100% !important;
        min-height: 35px !important;
        max-height: 55px !important;
        border: 1px solid #999 !important;
        padding: 6px !important;
        resize: none !important;
        overflow: hidden !important;
        white-space: pre-wrap !important;
        font-size: 9px !important;
        line-height: 1.25 !important;
    }

    .print-signature {
        margin-top: 14px !important;
        font-size: 9px !important;
    }

    .print-signature-space {
        height: 38px !important;
    }

    .signature-box {
        display: flex !important;
        justify-content: space-between !important;
        gap: 40px !important;
        margin-top: 16px !important;
    }

    .signature-box > div {
        width: 45% !important;
        text-align: center !important;
    }

    .signature-title {
        font-size: 9px !important;
        margin-bottom: 4px !important;
    }

    .signature-space {
        height: 40px !important;
    }
    
}

/* =========================
   FILTER LAPORAN
   ========================= */
.filter-laporan {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 24px;
}

.filter-laporan-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 18px;
    align-items: end;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #334155;
}

.filter-group select {
    width: 100%;
    height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 0 14px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.btn-filter-laporan {
    height: 44px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: white;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
    .approval-img {
        width: 90px;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.2s ease;
        object-fit: cover;
    }

    .approval-img:hover {
        transform: scale(1.08);
    }

    .image-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.85);
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .image-modal-content {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .image-modal-close {
        position: absolute;
        top: 20px;
        right: 35px;
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10000;
    }

    .image-modal-close:hover {
        color: #ddd;
    }

  /* trakin po dan do */
    .document-card {
        background: #ffffff;
    }

    .document-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 18px;
    }

    .document-header h2 {
        margin: 0;
        font-size: 24px;
        font-weight: 800;
        color: #0f172a;
    }

    .document-header p {
        margin: 6px 0 0;
        color: #64748b;
        font-size: 14px;
    }

    .document-info-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-bottom: 16px;
    }

    .document-info-box,
    .document-customer {
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        background: #fff;
        padding: 14px;
    }

    .document-info-box span,
    .document-customer span {
        display: block;
        font-size: 12px;
        color: #64748b;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .document-customer {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 20px;
        margin-bottom: 18px;
    }

    .document-customer p {
        margin: 0;
        color: #334155;
        line-height: 1.5;
    }

    .document-section-title {
        margin: 18px 0 10px;
        font-size: 16px;
        color: #0f172a;
        font-weight: 800;
    }

    .document-table-wrap {
        width: 100%;
        overflow-x: auto;
    }

    .document-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 13px;
    }

    .document-table th,
    .document-table td {
        border: 1px solid #e5e7eb;
        padding: 9px;
        text-align: left;
        vertical-align: top;
    }

    .document-table th {
        background: #f8fafc;
        color: #0f172a;
        font-weight: 800;
        white-space: nowrap;
    }

    .attribute-cell {
        font-size: 12px;
        color: #475569;
        line-height: 1.5;
        min-width: 150px;
    }

    .document-note {
        margin-top: 16px;
        padding: 14px;
        border-radius: 12px;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        color: #334155;
    }

    .do-signature-box {
        margin-top: 28px;
        border: 1px solid #e5e7eb;
        border-radius: 18px;
        padding: 26px 32px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: center;
        color: #0f172a;
    }

    .signature-item {
        min-height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .signature-space {
        height: 70px;
    }

    @media (max-width: 900px) {
        .document-info-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .document-customer {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 600px) {
        .document-info-grid {
            grid-template-columns: 1fr;
        }

        .document-header {
            flex-direction: column;
        }

        .do-signature-box {
            grid-template-columns: 1fr;
        }
    }

    @media print {
    @page {
        size: A4 landscape;
        margin: 7mm;
    }

    html,
    body {
        background: #fff !important;
        color: #000 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .sidebar,
    .topbar,
    .page-header,
    .footer,
    .no-print,
    .quotation-blind-actions,
    .btn-primary,
    .btn-secondary,
    .btn-warning,
    .btn-danger,
    .btn-info {
        display: none !important;
    }

    .admin-wrapper,
    .main-wrapper,
    .main-content,
    .table-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        box-shadow: none !important;
        border: 0 !important;
        overflow: visible !important;
    }

    .table-responsive {
        overflow: visible !important;
        padding: 0 !important;
    }

    .custom-table {
        width: 100% !important;
        border-collapse: collapse !important;
        table-layout: fixed !important;
        font-size: 8px !important;
    }

    .custom-table th,
    .custom-table td {
        border: 1px solid #000 !important;
        padding: 4px !important;
        color: #000 !important;
        word-break: break-word !important;
    }

    .custom-table th:last-child,
    .custom-table td:last-child {
        display: none !important;
    }

    .quotation-blind-bottom {
        display: grid !important;
        grid-template-columns: 1fr 32% !important;
        gap: 12px !important;
        margin-top: 10px !important;
        padding: 0 !important;
    }

    .quotation-blind-notes,
    .quotation-blind-summary {
        border: 1px solid #000 !important;
        padding: 8px !important;
        background: #fff !important;
        border-radius: 0 !important;
    }
}

        /* .no-print { */
            /* display: none !important;
        } */

        .document-header {
            border-bottom: 2px solid #111827;
            padding-bottom: 12px;
        }

        .document-info-box,
        .document-customer,
        .do-signature-box,
        .document-note {
            border: 1px solid #111827 !important;
            box-shadow: none !important;
        }

        .document-table-wrap {
            overflow: visible !important;
        }

        .document-table {
            width: 100% !important;
            border-collapse: collapse !important;
            font-size: 11px !important;
        }

        .document-table th,
        .document-table td {
            border: 1px solid #111827 !important;
            padding: 6px !important;
        }

        .document-table th {
            background: #f3f4f6 !important;
            color: #111827 !important;
        }

        .do-signature-box {
            page-break-inside: avoid;
        }
  
/* detail invoice */
@media print {
    @page {
        size: A4 portrait;
        margin: 8mm;
    }

    .no-print {
        display: none !important;
    }

    body {
        background: #fff !important;
        margin: 0 !important;
        padding: 0 !important;
        zoom: 0.85;
    }

    .invoice-page {
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
    }

    .invoice-shell {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 16px !important;
        box-shadow: none !important;
        border: none !important;
    }

    .invoice-grid-2 {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
    }

    .invoice-card {
        page-break-inside: avoid !important;
    }

    .invoice-table th,
    .invoice-table td {
        padding: 6px 8px !important;
        font-size: 11px !important;
    }

    .signature-space {
        height: 40px !important;
    }
}
/* PRINT ONLY - ALUFLEX FIX */
@media print {
    @page {
        size: A4 landscape;
        margin: 5mm;
    }

    body {
        zoom: 0.72 !important;
    }

    .aluflex-print-table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
        border-collapse: collapse !important;
    }

    .aluflex-print-table th,
    .aluflex-print-table td {
        font-size: 12px !important;
        line-height: 1.05 !important;
        padding: 2px 2px !important;
        text-align: center !important;
        vertical-align: middle !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
    }

    .aluflex-print-table th:last-child,
    .aluflex-print-table td:last-child {
        display: none !important;
    }

    .quotation-blind-notes,
    .quotation-blind-notes * {
        font-size: 15px !important;
        line-height: 1.2 !important;
    }

    .quotation-blind-summary,
    .quotation-blind-summary * {
        font-size: 15px !important;
        line-height: 1.2 !important;
    }
}

/* print po dan do */
@media print {
    @page {
        size: A4 landscape;
        margin: 7mm;
    }

    /* body * {
        visibility: hidden;
    } */

    .print-active,
    .print-active * {
        visibility: visible;
    }

    .print-active {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }

    .print-active + * {
        page-break-before: avoid !important;
    }

    .po-document,
    .do-document {
        page-break-after: auto !important;
        break-after: auto !important;
    }

    .document-card {
        page-break-after: auto !important;
        break-after: auto !important;
    }
}