@font-face {
    font-family: 'Speda';
    src: url('fonts/Speda.ttf');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Speda', sans-serif;
    background-color: #e2e8f0;
    direction: rtl;
    display: flex;
}

/* Dashboard Sidebar */
.dashboard {
    width: 300px;
    height: 100vh;
    background: #fff;
    position: fixed;
    right: 0;
    top: 0;
    padding: 25px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 100;
}

.dash-logo { text-align: center; margin-bottom: 30px; }
.dash-logo img { width: 80px; }

.stat-box {
    background: #1e293b;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    font-family: 'Speda';
    cursor: pointer;
    color: white;
}
.btn-print { background: #3b82f6; }
.btn-clear { background: #f59e0b; }
.btn-reset { background: #ef4444; }

/* A4 Page Layout */
.page-container {
    flex: 1;
    margin-right: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.a4-page {
    width: 210mm;
    height: 297mm; /* بەرزی جێگیر */
    padding: 10mm;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    display: flex;         /* ئەسڵی چارەسەرەکە لێرەدایە */
    flex-direction: column;  /* بەشەکان لەسەر یەک ڕیز دەکات */
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

/* Header with Solid Frame */
.document-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #000;
    padding: 15px;
    margin-bottom: 25px;
}

.main-logo { width: 100px; }
.title-frame { border: 2.5px solid #000; padding: 5px 30px; text-align: center; }
.title-frame h1 { margin: 0; font-size: 26px; }

/* Inputs and Table */
.inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.input-item { display: flex; align-items: center; gap: 10px; }
.input-item input {
    flex: 1;
    border: none;
    border-bottom: 1.5px solid #000;
    font-family: 'Speda';
    padding: 5px;
}

/* ستایلی نوێ و فەرمی بۆ خشتەکە */
.items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    table-layout: fixed; /* بۆ ئەوەی قەبارەی خانەکان جێگیر بێت */
}

/* ستایلی سەردێڕی خشتەکە (ڕیزناوی بابەت...) */
.items-table th {
    background-color: #2c3e50; /* ڕەنگێکی تۆخی فەرمی */
    color: #ffffff; /* نوسینی سپی */
    border: 1px solid #000;
    padding: 12px 5px;
    font-size: 14px;
    font-weight: bold;
}

/* ستایلی خانەکانی ناوەوەی خشتەکە */
.items-table td {
    border: 1px solid #000;
    padding: 8px;
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
}

/* ڕەنگکردنی ڕیزەکان بە شێوەی دانەناوەش بۆ جوانی */
.items-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* ستایلی ئینپوتەکانی ناو خشتەکە */
.items-table input {
    border: none;
    width: 100%;
    text-align: center;
    font-family: 'Speda';
    font-size: 14px;
    background: transparent;
    outline: none;
}

/* لابردنی دوگمەی زیادکردن و کردار لە کاتی چاپ */
@media print {
    .items-table th, .items-table td {
        border: 1.2px solid #000 !important; /* تۆخکردنەوەی هێڵەکان بۆ چاپ */
    }
    .items-table th {
        background-color: #eee !important; /* ڕەنگی خۆڵەمێشی کاڵ بۆ چاپ */
        color: #000 !important;
    }
}

.add-btn {
    width: 100%;
    padding: 10px;
    background: #f8fafc;
    border: 2px dashed #000;
    margin-top: 10px;
    cursor: pointer;
    font-family: 'Speda';
}

/* Policy and Totals */
.policy-box {
    color: #d60b25;
    
    padding: 8px;
    margin-top: auto; /* ئەم دێڕە وا دەکات واژووەکان هەمیشە لە خوارەوە بن و سەرنەکەون */
    flex-shrink: 0;   /* ناهێڵێت بەشەکە پان ببێتەوە یان تێکبچێت */
    font-size: 12px;
}

.totals-display {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    margin-top: 25px;
    font-weight: bold;
    font-size: 18px;
}

.signature-section {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 5px;
    flex-shrink: 0; /* ناهێڵێت واژووەکان بچووک ببنەوە */
}

.sig-card { width: 18%; text-align: center; font-size: 13px; }
.line { border-bottom: 1.5px solid #000; height: 35px; }

/* PRINT SETTINGS */
@media print {
    body { background: white; }
    .no-print, .dashboard { display: none !important; }
    .page-container { margin-right: 0; padding: 0; }
    .a4-page { box-shadow: none; border: none; margin: 0; width: 100%; height: 100%; }
    input, select { border: none !important; appearance: none; -webkit-appearance: none; }
}

/* هایدەرێکی زۆر تەنک و ڕێک */
.slim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1.5px solid #000; /* چوارچێوەی دەوری هەموو هایدەرەکە */
    padding: 10px 15px;
    margin-bottom: 15px;
    background-color: #fcfcfc;
}

/* لای ڕاست */
.h-brand p {
    margin: 2px 0;
    font-size: 13px;
	text-align: center;
    font-weight: bold;
}
.dept-tag { color: #000; font-size: 13px !important;  font-weight: bold; text-align: center; }

/* ناوەڕاست و لۆگۆ */
.h-core {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mini-logo {
    width: 60px; /* لۆگۆکە بچووک کراوەتەوە */
    height: auto;
    margin-bottom: 5px;
}
.title-border-slim {
    border: 1.5px solid #000;
    padding: 2px 15px;
    text-align: center;
}
.title-border-slim h1 {
    margin: 0;
    font-size: 18px; /* قەبارەی فۆنتەکە بچووک و ناسک کراوەتەوە */
    color: #000;
}
.title-border-slim span {
    font-size: 11px;
    display: block;
}

/* لای چەپ */
.h-meta-slim p {
    margin: 2px 0;
    font-size: 12px;
}
.form-id-box {
    margin-top: 5px !important;
    font-weight: bold;
    border-top: 1px solid #000;
    padding-top: 2px;
}

/* ڕێکخستنی چاپ */
@media print {
    .slim-header {
        border: 1.5px solid #000 !important;
        -webkit-print-color-adjust: exact;
    }
}

/* لە کاتی ئاسایی (شاشە) ئەمە بشارەوە */
.print-only {
    display: none;
}

@media print {
    /* شاردنەوەی لیبڵە درێژەکە لە کاتی چاپ */
    .screen-only {
        display: none !important;
    }

    /* نیشاندانی وشەی "بەش:" لە کاتی چاپ */
    .print-only {
        display: inline !important;
        font-weight: bold;
        font-size: 14px;
    }

    /* ڕێکخستنی سێلێکتەکە تا لە کاتی چاپ ڕێک بێت */
    #main-dept {
        border: none !important;
        appearance: none;
        -webkit-appearance: none;
        background: transparent;
        font-family: 'Speda';
        font-weight: bold;
        width: auto !important;
        padding: 0;
    }
}

/* چوارچێوەی سەرەکی هەموو هایدەرەکە */
.header-main-box {
    display: flex;
	text-align: center;
    justify-content: space-between;
    align-items: stretch; /* بۆ ئەوەی هەموو لایەکان یەک بەرزییان هەبێت */
    border: 1.5px solid #000; /* چوارچێوەی تەنک و ڕەش */
    padding: 10px;
    margin-bottom: 20px;
}

.h-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* لای ڕاست */
.right-text p {
    margin: 1px 0;
    font-size: 13px;
    font-weight: bold;
}
.small-dept { font-size: 13px !important; color: #000; text-align: center ;}

/* لای چەپ (ئینگلیزی) */
.left-eng {
    text-align: left;
}
.left-eng p {
    margin: 1px 0;
    font-size: 12px;
	text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

/* ناوەڕاست: لۆگۆ و چوارچێوەی ناونیشان */
.center-branding {
    flex: 1.5;
    align-items: center;
    border-right: 1px solid #ddd; /* هێڵێکی زۆر کاڵ بۆ جیاکردنەوە */
    border-left: 1px solid #ddd;
}

.logo-wrapper {
    margin-bottom: 5px;
}

.mini-logo {
    width: 75px; /* قەبارەی لۆگۆکە ناسک کراوەتەوە */
    height: auto;
}

.inner-title-frame {
    text-align: center;
}

.inner-title-frame h1 {
    margin: 0;
    font-size: 13px;
    border: 1px solid #000; /* چوارچێوەی دەوری ناونیشانەکە */
    padding: 2px 12px;
   
}

.sub-info-row {
    font-size: 11px;
    margin-top: 5px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.id-badge {
    
    padding: 1px 6px;
    background: #f9f9f9;
}

/* ڕێکخستنی چاپ */
@media print {
    .header-main-box, {
        border: 1.2px solid #000 !important;
    }
}

@media print {
    /* ١. دیاریکردنی قەبارەی کاغەز و لادانی مارجنی براوزەر */
    @page {
        size: A4;
        margin: 0;
    }

    body {
        background: white;
        margin: 0;
        -webkit-print-color-adjust: exact;
    }

    .no-print, .dashboard, .add-btn {
        display: none !important;
    }

    /* ٢. جێگیرکردنی پانتایی و بەرزی لاپەڕەکە */
    .a4-page {
        position: relative; /* گرنگە بۆ ئەوەی واژووەکان بەمەوە ببەستینەوە */
        width: 210mm;
        height: 297mm;
        padding: 10mm;
        margin: 0;
        border: none;
        box-shadow: none;
    }

    /* ٣. بزمارکردنی واژووەکان لە بنی لاپەڕەکە (Absolute Positioning) */
    .policy-box {
        position: absolute;
        bottom: 45mm; /* مەودای لە بنی لاپەڕەکە */
        width: calc(100% - 20mm); /* پانتایی بەپێی پادینگی لاپەڕەکە */
        left: 10mm;
        border: 0.2px solid #dcd4d8 !important;
    }

    .signature-section {
        position: absolute;
        bottom: 10mm; /* واژووەکان دەخاتە کۆتا خاڵی خوارەوە */
        width: calc(100% - 20mm);
        left: 10mm;
        margin-top: 0;
    }

    /* ٤. ڕێکخستنی خشتە و دەقەکان */
    .items-table th {
        background-color: #eee !important;
        color: #000 !important;
        border: 1.2px solid #000 !important;
        white-space: nowrap !important;
    }

    .items-table td {
        border: 1.2px solid #000 !important;
    }

    input {
        border: none !important;
    }
}