:root {
  --main-color: #f05b26;
  --second-color: #016937;
  --third-color: #64c2ce;
  --forth-color: #6e6ddd;
  --five-color: #a3c600;
  --six-color: #62a6f4;
  --white-color: #fff;
  --black-color: #000000;
  --line-color: #7070701d;
  /* گۆڕانکاری: پاشبنەمایەکی زۆر کراوەتر و مۆدێرنتر */
  --bacground-color: #f4f5f7; 
}

@font-face {
  font-family: main;
  src: url(/kr/public/fonts/Sarkar-3.ttf);
}

/* Default styles (desktop) */
body {
  position: relative;
  font-family: main;
  width: 90%;
  height: 100%;
  margin: auto;
  padding: 5px;
  background-color: var(--bacground-color);
  color: var(--black-color);
  direction: rtl;
  z-index: 1;
}

.slideshow-container {
  width: 350px;
  height: 300px;
  border: 1px solid var(--line-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
  margin: 0 0 0 20px;
}
.slideshow-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.container {
  grid-template-rows: auto 1fr auto;
  height: auto;
  min-height: 100vh;
  display: grid;
  width: 100%;
  row-gap: 5px;
  overflow-x: hidden;
  padding: 0px;
}

h4 {
  font-size: 20px;
  color: red;
}

/* گۆڕانکاری: هێدەری سپی لەگەڵ سێبەرێکی ناسک بۆ جیاکردنەوەی لە پاشبنەما */
.header {
  display: grid;
  grid-template-columns: 1fr 6fr 3fr;
  margin: 0;
  background-color: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  z-index: 9998;
  width: 100%;
  left: 0;
  top: 0;
}
.header-menu {
  padding: 5px;
}
.header-menu img {
  width: 35px;
  height: 35px;
}
.header-menu img:hover {
  cursor: pointer;
}
.header-content {
  text-align: right;
  padding: 5px 10px;
  font-size: 14px;
}

.header-logo {
  place-self: center;
}
.header-logo img {
  width: 50px;
  height: 50px;
}

/*============================bag icon & language switcher==================*/
.header-icon {
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-icon img {
  width: 35px;
  height: 35px;
}

.header-icon img:hover {
  cursor: pointer;
}

.header-icon a {
  position: relative;
  display: inline-block;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #f16530;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.lang-switcher button {
  background-color: var(--main-color) !important;
  color: var(--white-color) !important;
  border: none !important;
  padding: 7px 16px !important;
  font-family: main, inherit !important;
  font-size: 16px !important;
  font-weight: bold !important;
  border-radius: 20px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  box-shadow: 0 2px 5px rgba(240, 91, 38, 0.2) !important;
  transition: all 0.2s ease-in-out !important;
}

.lang-switcher button:hover {
  background-color: #d64613 !important;
  transform: scale(1.05) !important;
}

/*============================content==================*/
.content {
  margin: 70px 2px;
}
.content h1 {
  font-size: 20px;
  margin: 10px;
  padding: 10px 0px;
}
.footer {
  display: grid;
  grid-template-columns: 30px 30px 30px;
  gap: 10px;
  padding: 10px;
  place-content: center;
}
.footer img {
  width: 24px;
  height: 24px;
}
.footer p {
  font-size: 8px;
  padding: 0px 0px 5px 5px;
  display: inline;
}
.user {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border: 1px solid var(--line-color);
  margin: 1px;
  border-radius: 20px;
  padding: 20px;
}
.user-picture {
  display: grid;
  justify-content: center;
  align-content: center;
  border: 1px solid var(--line-color);
  width: 90px;
  height: 90px;
  border-radius: 50px;
}
.user-picture img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
}
.user-info {
  margin: 5px;
}
.user-info h1 {
  font-size: 20px;
  padding: 10px 0px;
  line-height: 1px;
  margin: 20px 0px 0px 10px;
}
.user-info p {
  font-size: 10px;
  padding: 10px 0px;
  line-height: 1px;
  margin: 0px 0px 10px 10px;
}
.filter-date {
  display: grid;
  grid-template-columns: repeat(5, minmax(20px, auto));
  overflow-x: scroll;
  grid-auto-flow: column;
  margin: 10px;
  border: 1px solid var(--line-color);
  border-radius: 20px;
}
.filter-date > div {
  color: var(--black-color);
  font-size: 12px;
  text-align: center;
  padding: 8px 0px;
  border: 1px solid var(--line-color);
  margin: 5px;
  border-radius: 15px;
}
.filter-date .active {
  background-color: var(--main-color);
}
.filter-task {
  display: grid;
  grid-template-columns: repeat(auto-fit, 110px);
  grid-template-rows: 110px;
  grid-auto-flow: column;
  overflow-x: scroll;
  margin: 10px;
  border: 1px solid var(--line-color);
  border-radius: 20px;
}
.filter-task > div {
  border: 1px solid var(--line-color);
  margin: 10px 10px 10px 0px;
  border-radius: 15px;
}
.filter-task .active {
  background-color: var(--main-color);
}
.filter-task:hover {
  cursor: pointer;
}
.filter-task h1 {
  font-size: 12px;
  padding: 10px;
  text-align: center;
  margin: 0;
}
.filter-task p {
  font-size: 10px;
  padding: 10px 0px;
  text-align: center;
  margin: 0;
}

/* start record task  */
.task {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  height: 350px;
  border: 1px solid var(--line-color);
  border-radius: 20px;
  margin: 10px;
  overflow-y: scroll;
  align-items: start;
}
.task-record {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  grid-template-rows: 70px;
  row-gap: 5px;
  border: 1px solid var(--line-color);
  border-radius: 20px;
  margin: 5px 10px;
  max-height: 70px;
}
.task-record-box {
  border: 1px solid var(--line-color);
  margin: 10px 10px 10px 0px;
  border-radius: 15px;
}
.task-record-box h1 {
  font-size: 10px;
  padding: 12px 0px;
  text-align: center;
  margin: 0;
}

.task-record-box-install { background-color: var(--second-color); color: var(--white-color); }
.task-record-box-maintenance { background-color: var(--third-color); color: var(--white-color); }
.task-record-box-change { background-color: var(--forth-color); color: var(--white-color); }
.task-record-box-tower { background-color: var(--five-color); color: var(--white-color); }
.task-record-box-transport { background-color: var(--six-color); color: var(--white-color); }

.task-record-profile, .task-record-info {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 15px 15px 15px;
}
.task-record-profile p, .task-record-info p {
  font-size: 10px;
  text-align: right;
  padding: 0px 10px;
}
.task-record-info h4 {
  font-size: 14px;
  text-align: right;
  padding: 0px 10px;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  width: 30px;
  margin: 5px 5px;
  color: var(--white-color);
  background-color: var(--main-color);
}
.task-record-info h4:hover {
  opacity: 0.6;
  color: var(--black-color);
  cursor: pointer;
}
.task-record-detail {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 20px 20px;
  align-content: center;
}
.task-record-detail p {
  font-size: 10px;
  text-align: right;
  padding: 0px 10px;
  margin: 0px;
}
.task-record-icon {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: 30px;
  align-content: center;
  justify-items: right;
}
.task-record-icon-image {
  border-radius: 5px;
  margin: 2px;
}
.task-record-icon-image img {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* customer info style */
.customer-info {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 2fr 1fr 1fr 1fr 1fr;
  margin: 10px;
  border: 1px solid var(--line-color);
  border-radius: 20px;
}
.customer-info h1 {
  font-size: 16px;
  padding: 10px 10px;
  margin: 0px;
}
.customer-info p {
  font-size: 10px;
  padding: 1px 30px;
  margin: 0px;
}

/* view images */
.view-images {
  display: grid;
  grid-template-columns: 2fr 2fr;
  grid-template-rows: 2fr 2fr;
  gap: 2px;
  margin: 10px;
  border: 1px solid var(--line-color);
  border-radius: 20px;
}
.view-images img {
  width: 150px;
  height: 100px;
  margin: 10px;
  border: 1px solid var(--line-color);
  border-radius: 20px;
}

.form {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line-color);
  margin: 10px;
  border-radius: 20px;
  padding: 10px 20px 20px 20px;
  background-color: var(--white-color);
}
.form h1 { font-size: 20px; }
.form label { font-size: 14px; display: block; }
.form input[type="text"] {
  border: 1px solid var(--line-color);
  width: 90%;
  border-radius: 10px;
  padding: 8px 10px;
  margin: 10px 0px 20px 0px;
  font-size: 16px;
}
.form input[type="password"],
.form input[type="date"],
.form select {
  border: 1px solid var(--line-color);
  width: 90%;
  border-radius: 10px;
  padding: 8px 10px;
  margin: 10px 0px 20px 0px;
  font-size: 16px;
  text-align: right;
}

/* چاککراو: کێشەی کاریگەری لەسەر هەموو دوگمەکان چارەسەر کرا */
.form input[type="button"],
.form input[type="submit"] {
  border: 1px solid var(--line-color);
  width: 120px;
  border-radius: 10px;
  padding: 8px 10px;
  margin: 0px 0px 0px 10px;
  background-color: var(--main-color);
  font-size: 16px;
  cursor: pointer;
  color: var(--white-color);
}
.form input[type="file"] {
  border: 1px solid var(--line-color);
  width: 90%;
  border-radius: 10px;
  padding: 8px 10px;
  margin: 10px 0px 10px 10px;
  font-size: 16px;
}
.whatsapp-note {
    color: #e66a3e; /* ئەو ڕەنگە پرتەقاڵییە مۆدێرنەی کە پێشتر بەکارمان هێنا */
    font-size: 11px;
    display: block;
    margin-top: 4px;
    font-weight: normal;
    text-align: right; /* بۆ دڵنیابوونەوە لە ڕێکبوونی لەگەڵ زمانی ڕاست بۆ چەپ */
    opacity: 0.9;
}
/* table */
.tbl {
  display: grid;
  grid-template-rows: 70px 30px 30px;
  border-radius: 20px;
  border: 1px solid var(--line-color);
  margin: 10px;
  padding: 10px;
}
.tbl-title {
  display: grid;
  grid-template-columns: 3fr 1fr;
  margin: 10px;
}
.tbl-title-title {
  font-size: 20px;
  text-align: right;
  padding: 10px 0px;
}
.tbl-title-button {
  font-style: normal;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  padding: 5px;
  color: var(--white-color);
  height: 25px;
}
.tbl-record {
  display: grid;
  grid-template-columns: 20px repeat(auto-fit, minmax(30px, auto));
  padding: 5px;
  border: 1px solid var(--line-color);
  font-size: 10px;
}
.tbl-record:hover { background-color: var(--line-color); }
.recordheader {
  background-color: var(--main-color);
  border-radius: 10px 10px 0px 0px;
  font-size: 12px;
  color: var(--white-color);
}
.tbl-cell-10 { width: 10px; }
.tbl-cell-10 img { width: 16px; height: 16px; padding: 0px; margin: 0px; }
.tbl-cell-20 { width: 20px; }
.tbl-cell-30 { width: 30px; }
.tbl-cell-40 { width: 40px; }
.tbl-cell-50 { width: 50px; }
.tbl-cell-60 { width: 60px; }
.tbl-cell-70 { width: 70px; }
.tbl-cell-80 { width: 80px; }
.tbl-cell-90 { width: 90px; }
.tbl-cell-100 { width: 100px; }
.tbl-cell-120 { width: 120px; }
.tbl-cell-140 { width: 140px; }
.tbl-cell-160 { width: 160px; }

.report {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 20px;
  border: 1px solid var(--line-color);
  border-radius: 20px;
  margin: 10px;
  padding: 10px;
}
.report-box {
  border: 1px solid var(--line-color);
  border-radius: 10px;
  color: var(--white-color);
  margin: 0px 10px;
}
.report-box a {
  font-size: 16px;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  color: var(--white-color);
  display: block;
}
.report-box p {
  font-size: 12px;
  text-align: center;
  padding: 10px;
}
.report-box.one { background-color: var(--second-color); }
.report-box.two { background-color: var(--third-color); }
.report-box.three { background-color: var(--forth-color); }
.report-box.four { background-color: var(--five-color); }
.report-box.five { background-color: var(--second-color); }
.report-box.six { background-color: var(--third-color); }
.report-box.seven { background-color: var(--forth-color); }
.report-box.eight { background-color: var(--five-color); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* تێبینی: بۆ مۆبایل پێویستە لە media query بیکەیت بە 2 یان 3 */
  gap: 1rem;
}

/* گۆڕانکاری: سێبەری کارتەکان نەرمتر کراوە بۆ ئەوەی جوانتر بێت لەگەڵ پاشبنەما */
.product-card {
  margin: 0px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* زیادکراوە: بۆ ئەوەی هەموو کارتەکان لە یەک ئاستدا بن */
  height: 100%; /* زیادکراوە: بۆ پڕکردنەوەی بەرزی grid */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
  overflow: hidden; /* زیادکراوە: ڕێگری دەکات لە چوونەدەرەوەی هەر شتێک لە قەبارەی کارتەکە */
}

.product-card img {
  width: 80%;
  height: 120px;
  object-fit: contain; /* زیادکراوە: بۆ ئەوەی وێنەکان تێکنەچن و بەجوانی جێیان ببێتەوە */
  margin-top: 10px;
}

.card-info {
  width: 100%;
  text-align: center;
  font-size: 13px;
  padding: 0 5px; /* زیادکراوە: بۆ ئەوەی تێکستەکە نەنووسێت بە لێواری کارتەکەوە */
  box-sizing: border-box;
}

.product-title {
  font-size: 13px;
  padding: 0;
  margin: 5px 0;
  
  /* گۆڕانکارییە سەرەکییەکان لێرەدان بۆ بڕینی تێکستەکە */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* تەنها دوو دێڕ ڕێگەپێدراوە */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5; /* ڕێکخستنی نێوان دێڕەکان */
  min-height: 39px; /* (13px * 1.5 * 2) بۆ ئەوەی ئەگەر یەک دێڕیش بوو بەرزییەکەی نەگۆڕێت */
  word-break: break-word; /* وا دەکات وشە درێژەکان نەبنە هۆی کشانی کارتەکە */
}

/* گۆڕانکاری: ڕەنگی پرتەقاڵی و قەبارەی گەورەتر بۆ نرخ */
.product-price {
  font-weight: bold;
  margin: 5px 3px;
  font-size: 16px;
  color: var(--main-color);
}

.add-btn {
  font-family: main;
  background: var(--main-color);
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  margin: 5px 20px 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; /* ئەمە زۆر گرنگە بۆ لادانی بۆشاییە خۆکارەکانی وێبگەڕ */
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.add-btn img {
  width: 20px;
  height: 20px;
  margin: 0; /* دڵنیابوونەوە لەوەی وێنەکە هیچ بۆشاییەکی دەرەکی نییە */
  padding: 0;
  display: block; /* گۆڕینی بۆ بلۆک بۆ ئەوەی بۆشایی ژێرەوەی نەمێنێت */
}

.add-btn:active {
  transform: scale(0.95);
}
.heart-icon {
  width: 25px;
  height: 25px;
  background: #ccc;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
}
.heart-icon.liked { background: red; }

/* ========================================= */
/* بەشی مێنۆ (چاککراو بە سیستەمی Grid بۆ مۆبایل) */
/* ========================================= */
/* چوارچێوەی سەرەکی مێنۆی ئەدمین */
.admin-menu {
    display: grid;
    /* لە مۆبایلدا ٢ دانە، لە شاشەی گەورەدا ٣ یان ٤ دانە دەخاتە پاڵ یەک */
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    padding: 15px;
    direction: rtl;
}

/* دیزاینی کارتەکان */
.admin-card {
    background-color: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03); /* سێبەرێکی زۆر ناسک */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* دیزاینی بازنەی ناوەڕاست کە ئایکۆنەکەی تێدایە */
.admin-card-icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--main-color);
    background-color: rgba(240, 91, 38, 0.08); /* پرتەقاڵییەکی زۆر کاڵ بۆ باکگراوندی ئایکۆنەکە */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* دیزاینی نووسینەکە */
.admin-card-title {
    color: var(--black-color);
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    font-family: inherit;
}

/* کاریگەرییەکان کاتێک ماوس دەچێتە سەری یان لە مۆبایل کلیکی لێ دەکرێت */
.admin-card:hover, .admin-card:active {
    transform: translateY(-5px); /* کارتەکە کەمێک بەرز دەبێتەوە */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* سێبەرەکەی زیاتر دەبێت */
    border-color: rgba(240, 91, 38, 0.3); /* چوارچێوەکەی کەمێک ڕەنگ دەگرێت */
}

/* گۆڕینی ڕەنگی ئایکۆنەکە کاتی کلیک کردن */
.admin-card:hover .admin-card-icon, .admin-card:active .admin-card-icon {
    background-color: var(--main-color);
    color: var(--white-color);
    transform: scale(1.1); /* ئایکۆنەکە کەمێک گەورە دەبێت */
}

.overlay {
  position: absolute;
  display: none;
  width: 400px;
  height: 750px;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.753);
  z-index: 2;
}

.overlayForm {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  width: 300px;
  height: auto;
  border-radius: 10px;
  background-color: var(--white-color);
  text-align: right;
  padding: 10px;
  position: absolute;
  top: 200px;
  right: 50px;
  opacity: 1;
}

.overlayForm h1 { font-size: 35px; padding: 5px; color: var(--main-color); }
.overlayForm p { font-size: 18px; padding: 10px; color: var(--black-color); }

/* چاککراو: کێشەی کاریگەری لەسەر هەموو دوگمەکان چارەسەر کرا */
.overlayForm input[type="button"],
.overlayForm input[type="submit"] {
  border-radius: 10px;
  background-color: var(--main-color);
  border: 1px solid var(--white-color);
  color: var(--white-color);
  font-size: 16px;
  padding: 10px 10px;
  margin: 0px 20px;
  text-align: center;
  width: 35%;
}

.overlayForm input[type="submit"]:hover,
.overlayForm input[type="button"]:hover { opacity: 0.7; }

.overlayForm input[type="text"] {
  border: 1px solid var(--line-color);
  width: 90%;
  border-radius: 10px;
  padding: 8px 10px;
  margin: 10px 0px 20px 0px;
  font-size: 16px;
}

.nav {
  position: absolute;
  display: none;
  width: 400px;
  height: 750px;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.929);
  z-index: 2;
}
.nav img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin: 10px;
}
.nav-category { padding: 20px; }
.nav-category a {
  color: var(--white-color);
  font-size: 16px;
  padding: 5px 20px;
  display: block;
}
.nav-category a:hover { color: rgb(176, 166, 166); }

/*==========================conferm Div======================================*/
.confermDiv {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  width: 300px;
  height: 210px;
  border-radius: 10px;
  background-color: var(--white-color);
  text-align: right;
  padding: 10px;
  position: absolute;
  top: 200px;
  right: 50px;
  opacity: 1;
}

.confermDiv h1 { font-size: 20px; padding: 5px; }
.confermDiv p { font-size: 18px; padding: 10px; }

.confermDiv button {
  border-radius: 10px;
  background-color: var(--main-color);
  border: 1px solid var(--white-color);
  color: var(--white-color);
  font-size: 18px;
  padding: 10px 10px;
  margin: 0px 20px;
  text-align: center;
  width: 25%;
}

.confermDiv button:hover { opacity: 0.7; }

/*detail===============================================*/
.detail-card {
  width: 350px;
  border-radius: 20px;
  overflow: hidden;
  color: #333;
  padding: 20px;
  text-align: right;
}

.detail-card h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 10px 0;
  color: var(--main-color);
}
.detail-card h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0 10px 0;
  color: var(--second-color);
}

.food-card p {
  font-size: 13px;
  line-height: 1.5;
  color: #555;
}

.detail-card .info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 15px;
  color: var(--second-color);
}

.detail-card .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.detail-card .price {
  font-size: 14px;
  font-weight: bold;
  border: 1px solid var(--main-color);
  border-radius: 10px;
  padding: 10px 20px;
}

.detail-card button {
  background-color: var(--main-color);
  color: var(--white-color);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.detail-card button:hover { background-color: #333; }

.contactus, .aboutus {
  padding: 10px;
  width: 100%;
  text-align: right;
}
.contactus img, .aboutus img {
  width: 150px;
  height: 150px;
  padding: 10px;
  margin: auto;
  display: block;
}
.contactus .facebook, .contactus .whatsapp {
  text-align: center;
  font-size: 16px;
  padding: 10px;
}
.contactus .facebook img, .contactus .whatsapp img {
  width: 24px;
  height: 24px;
  margin: auto;
  display: block;
}

.aboutus h1 { font-size: 20px; color: var(--main-color); display: block; }
.aboutus h3 { font-size: 14px; color: var(--second-color); display: inline; }
.aboutus p { font-size: 12px; color: var(--black-color); display: block; }

.tag {
  border: 1px solid var(--line-color);
  margin: 10px;
  padding: 0 10px;
  border-radius: 10px;
}
.question { font-size: 10px; color: var(--main-color); }
.answer { font-size: 8px; color: var(--black-color); }

/*==========================================bags==============================*/
.qty { font-size: 16px; color: var(--black-color); font-weight: bold; }

.cart-container {
  max-width: 400px;
  margin: 30px auto;
  background: var(--bacground-color);
  border-radius: 25px;
  padding: 20px;
  padding-bottom: 220px; 
}

.cart-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cart-header .back, .cart-header .bag {
  position: absolute;
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-header .back { right: 0; }
.cart-header .bag { left: 0; }
.bag { height: 400px; }

.cart-item {
  width: 95%;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  padding: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  box-sizing: border-box;
}

/* دوگمەی سڕینەوە لەناو سەبەتە */
.cart-item .delete-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  right: auto; /* ئەمە کێشەکە چارەسەر دەکات و دەیباتە لای چەپ */
  background: #f4f5f7;
  color: #555;
  border: none;
  font-weight: bold;
  font-size: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-item .delete-btn:hover, .cart-item .delete-btn:active {
  background: #ff4d4d;
  color: white;
}

.item-image img { width: 55px; height: 55px; border-radius: 10px; object-fit: cover; }
.item-details { flex: 1; margin-right: 12px; text-align: right; }
.item-details h4 { margin: 0; font-size: 1rem; color: var(--main-color); font-weight: bold; }
.item-details p { margin: 5px 0; font-size: 0.8rem; color: #888; }
.item-price { font-weight: bold; font-size: 1.05rem; color: var(--black-color); }

.quantity { display: flex; align-items: center; gap: 10px; }
.quantity button {
  background-color: #f1f1f1;
  color: var(--main-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s ease;
}
.quantity button:active { background-color: #e2e2e2; }

.checkout-section {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: var(--main-color);
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  padding: 20px 25px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  color: var(--white-color);
  box-sizing: border-box;
}

.price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.15rem;
  margin-top: 12px;
  margin-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
}

.checkout-btn {
  background: var(--white-color);
  color: var(--main-color);
  padding: 14px;
  border-radius: 12px;
  border: none;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease, transform 0.1s ease;
}
.checkout-btn:active { transform: scale(0.98); }

/*===================address=====================*/
.order-box {
  width: 90%;
  max-width: 380px;
  background: var(--white-color);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
  margin: 20px auto;
  box-sizing: border-box;
}

/* دیزاینی نوێی چوارچێوەی نرخەکان */
.price-box-detailed {
    background: #f4f5f7;
    padding: 18px 22px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(240, 91, 38, 0.08);
    direction: rtl;
}

/* ڕێکخستنی دێڕەکان کە لای چەپ و ڕاست پڕ بکەنەوە */
.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.summary-label {
    font-weight: normal;
}

.summary-value {
    font-weight: bold;
    color: var(--black-color);
}

/* ستایلی تایبەت بۆ دەقی "بێبەرامبەر" */
.free-delivery-text {
    color: var(--second-color); /* بەکارهێنانی ڕەنگی سەوزی فەرمی سایتەکەت */
    font-weight: bold;
}

/* ستایلی دێڕی کۆتایی (کۆی گشتی) */
.total-line {
    border-top: 1px dashed #ced2da;
    padding-top: 12px;
    margin-top: 12px;
    margin-bottom: 0;
}

.total-line .summary-label {
    font-size: 16px;
    font-weight: bold;
    color: var(--black-color);
}

.total-line .summary-value {
    font-size: 22px; /* گەورەکردنی کۆی گشتی بۆ ئەوەی ڕوون بێت */
    color: var(--main-color); /* ڕەنگی پرتەقاڵی سەرەکی */
}

.form-group {
  margin-bottom: 18px;
  text-align: right;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
  font-weight: bold;
}
.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}
.form-group input:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(240, 91, 38, 0.15);
}
.form-group input[type="tel"], 
.form-group input[placeholder*="07"] {
  direction: ltr;
  text-align: right;
}

/* چاککراو: دیاریکردنی .address-btn بۆ ئەوەی تێکەڵ نەبێت لەگەڵ دوگمەکانی مۆدال */
.address-btn {
  width: 100%;
  padding: 14px;
  background: var(--main-color);
  color: var(--white-color);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(240, 91, 38, 0.2);
  transition: background 0.2s ease, transform 0.1s ease;
  font-family: inherit;
  margin-top: 10px;
}
.address-btn:hover { background: #d94d1b; }
.address-btn:active { transform: scale(0.98); }

/*what app*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
}
.whatsapp-float img { width: 40px; height: 40px; }

/* Mobile styles */
@media only screen and (max-width: 768px) {
  body {
    position: relative;
    font-family: main;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 15px; /* گەڕاندنەوەی بۆشایی بۆ لای ڕاست و چەپی هەموو وێبسایتەکە */
    background-color: var(--bacground-color);
    color: var(--black-color);
    direction: rtl;
    z-index: 1;
    box-sizing: border-box;
  }
  
  /* زیادکردنی بۆشایی بۆ هێدەر بۆ ئەوەی دوگمەی زمانەکە نەنووسێت بە قەراغەوە */
  .header {
    padding: 0 15px;
    box-sizing: border-box;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 0; /* بۆشایی سەرەوە و خوارەوەی کارتەکان. ڕاست و چەپی پێویست نییە چونکە body هەیەتی */
    width: 100%;
    box-sizing: border-box;
  }

  .product-card {
    margin: 0 !important;
    width: 100%;
  }
}
/* ========================================================================= */
/* banner slide show                                                         */
/* ========================================================================= */
.zheer-slider-container {
  position: relative;
  width: 92%;
  max-width: 500px;
  height: 120px;
  margin: 15px auto 25px auto;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
  direction: rtl;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.zheer-slider { position: relative; width: 100%; height: 100%; }
.zheer-slider .slide {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  box-sizing: border-box;
}
.zheer-slider .slide.active { opacity: 1; visibility: visible; }
.zheer-banner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 20px;
  box-sizing: border-box;
  text-align: right;
}
.zheer-banner .banner-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zheer-banner .banner-text h3 { margin: 0 0 6px 0; font-size: 18px; font-weight: bold; font-family: inherit; }
.zheer-banner .banner-text p { margin: 0; font-size: 13px; line-height: 1.4; opacity: 0.95; font-family: inherit; }
.free-delivery-banner { background: linear-gradient(135deg, #db5a30 0%, #f0764f 100%); color: #ffffff; }
.discount-banner { background: linear-gradient(135deg, #c24921 0%, #e0663e 100%); color: #ffffff; }
.warranty-banner { background: linear-gradient(135deg, #e66a3e 0%, #f28e6b 100%); color: #ffffff; }
.slider-dots {
  position: absolute;
  bottom: 12px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.slider-dots .dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dots .dot.active { background-color: #ffffff; width: 20px; border-radius: 4px; }

/*===========image show============*/
.image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.image-container img { width: 100%; height: auto; display: block; }
.delete-img-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #ff4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.2s;
}
.delete-img-btn:hover { background-color: #cc0000; }

/* چاککراو: دوگمەی زیادکردن */
.top-actions {
  margin-bottom: 20px;
  text-align: right;
  direction: rtl; /* بۆ دڵنیابوونەوە لە ڕاست بۆ چەپ */
}
.open-ajax-modal {
  display: inline-block;
  background-color: var(--main-color);
  color: #ffffff;
  padding: 10px 25px; /* کەمێک پانتر کرا */
  text-decoration: none;
  border-radius: 8px; /* شێوەی جوانتر */
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap; /* زۆر گرنگە: ڕێگری دەکات لە تێکچوونی وشەکان بەسەر یەکدا */
  transition: all 0.3s ease;
}
.open-ajax-modal:hover {
  background-color: #d64613; /* ڕەنگێکی کەمێک تۆختر لەجیاتی ستایلی هەڵە */
  transform: scale(0.98);
}

/* دیزاینی سەرەکی مۆدال */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  direction: rtl;
}

.modal-content {
  background-color: #f9f9f9;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #ddd;
  width: 90%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-title { text-align: right; margin-bottom: 25px; }

.close-modal {
  color: #aaa;
  float: left;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close-modal:hover { color: #333; }

.modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* چاککراو: تەنها کاریگەری لەسەر دوگمەکانی ناو مۆدال دەبێت */
.modal-actions .btn {
  width: 48%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
}
.btn-submit { background-color: var(--main-color); }
.btn-cancel { background-color: var(--main-color); }
.modal-actions .btn:hover { opacity: 0.9; }

/* ڕێکخستنی چوارچێوەی گشتی سلایدشۆکە */
.detail-slider-container {
  max-width: 500px;
  margin: 20px auto;
  padding: 15px;
  border: 1px solid var(--bacground-color);
  border-radius: 8px;
  background-color: #f9f9f9;
}

/* ڕێکخستنی شوێنی وێنەی سەرەکی */
.detail-main-image-section {
  position: relative;
  width: 100%;
  height: 350px; /* گۆڕانکاری: بەرزییەکی جێگیر دیاریکرا بۆ ئەوەی سلایدەکە کورت و درێژ نەبێتەوە */
  border: 1px solid #ccc;
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.detail-main-image-section img {
  width: 100%;
  height: 100%; /* گۆڕانکاری: لەبری auto دەبێت 100% بێت بۆ ئەوەی پڕ بە بەرزییە جێگیرەکە بێت */
  object-fit: contain; /* گۆڕانکاری: وا دەکات وێنەکە بەتەواوی جێی ببێتەوە بەبێ ئەوەی تێکبچێت یان ببڕدرێت */
  display: block;
}

/* دیزاینی دوگمەکانی ڕاست و چەپ (وەک خۆی دەمێنێتەوە) */
.detail-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
  border: 1px solid #ccc;
  cursor: pointer;
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 4px;
  transition: 0.3s;
  z-index: 10; /* گۆڕانکاری: زیادکرا بۆ ئەوەی دوگمەکان هەمیشە بکەونە سەر وێنەکە */
}

.detail-nav-btn:hover {
  background-color: #333;
  color: #fff;
}

.detail-prev { left: 10px; }
.detail-next { right: 10px; }

/* ========================================================================= */
/* Invoice Management Styles (دیزاینە چاککراوەکە بۆ مۆبایل)                 */
/* ========================================================================= */

.zheer-card-container {
    width: 95%; /* کەمێک پانتر کرا بۆ ئەوەی خشتەکە جێی ببێتەوە */
    margin: 50px 10px ;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 12px;
    direction: rtl;
    font-family: main, Tahoma, Arial, sans-serif;
    box-sizing: border-box; /* ئەمە ڕێگری دەکات لە چوونەدەرەوەی شتەکان */
}

.search-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.search-section input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--black-color);
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

/* دوگمەی گەڕان و هەڵگرتن کە ڕەنگی پرتەقاڵییە وەک وێنەکەت */
.search-btn, .save-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--main-color);
    color: var(--white-color);
    border: 1px solid var(--black-color); /* هێڵی ڕەش وەک وێنەکەت */
    border-radius: 8px;
    font-size: 18px;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s;
    box-sizing: border-box;
}

.search-btn:hover, .save-btn:hover {
    opacity: 0.8;
}

/* بەشی زانیارییەکان ڕێکخراوەتەوە کە ڕاست و چەپ بگرن */
.info-section {
    margin-bottom: 25px;
    padding: 0 5px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 15px;
}

.info-row:last-child {
    border-bottom: none;
}

.label-title {
    color: #444;
}

.label-value {
    font-weight: bold;
    color: var(--black-color);
}

/* خشتەکە بۆ مۆبایل */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 25px;
    border-radius: 4px;
}

.sketch-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    direction: rtl; /* دڵنیابوونەوە لە ڕاست بۆ چەپ */
}

.sketch-table th, .sketch-table td {
    border: 1px solid var(--black-color);
    padding: 12px 6px;
    font-size: 13px;
    vertical-align: middle;
}

.sketch-table th {
    background-color: transparent;
    font-weight: bold;
    font-size: 14px;
}

/* بەشی هەڵبژاردنی بارودۆخ */
.status-changer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 0 5px;
}

.status-changer label {
    font-size: 15px;
    font-weight: bold;
}

.status-changer select {
    padding: 10px;
    border: 1px solid var(--black-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    background-color: transparent;
    min-width: 150px;
}

/* بۆکسە خاڵخاڵەکەی دیاریکردنی کاڵا */
.returned-items-box {
    display: none;
    border: 2px dashed var(--black-color);
    border-radius: 12px;
    padding: 20px 15px;
    margin-bottom: 25px;
    background-color: #fafafa;
    box-sizing: border-box; /* ڕێگری دەکات لە بڕانی چێکبۆکسەکە */
}

.returned-items-box h4 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* چارەسەری بڕانی چێکبۆکسەکە */
.item-checkbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
}

.item-details {
    font-size: 14px;
    line-height: 1.5;
}

.item-details small {
    color: #666;
    font-weight: bold;
}

.item-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--main-color);
    flex-shrink: 0; /* وا دەکات هەرگیز بچووک نەبێتەوە یان نەبڕدرێت */
}








/* reports.css */

.report-container {
    width: auto;
    margin: 50px 10px 10px 10px;
    padding: 15px;
    direction: rtl;
    font-family: main, Tahoma, Arial, sans-serif;
}

.report-header {
    text-align: center;
    margin-bottom: 25px;
}

.report-header h2 {
    color: var(--black-color);
    margin: 0 0 5px 0;
    font-size: 24px;
}

.report-header .report-date {
    color: #666;
    font-size: 14px;
    margin: 0;
}


/* ڕێکخستنی کارتەکان بە شێوازی Grid */
.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* دوو ستوون */
    gap: 15px;
}


/* دیزاینی کارتەکان */
.report-card {
    background-color: var(--white-color);
    border: 1px solid var(--line-color);
    border-radius: 16px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

/* تایتڵی کارتەکە (نموونە: قازانج، خەرجی) */
.card-title {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    font-weight: bold;
}

/* ژمارەکان و پارەکان */
.card-value {
    font-size: 16px;
    font-weight: bold;
    direction: ltr; /* بۆ ئەوەی IQD بکەوێتە لای چەپی ژمارەکە */
}

.card-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color); /* ڕەنگی پرتەقاڵی بۆ ژمارەکان */
}

/* ڕەنگە تایبەتەکان بۆ زیاتر ڕوونکردنەوەی داتاکان */
.highlight { color: var(--main-color); }
.danger { color: #e74c3c; } /* سوور بۆ خەرجی و گەڕانەوە */
.success { color: #2ecc71; } /* سەوز بۆ قازانج */
.success-solid { 
    color: #27ae60; 
    font-size: 18px; 
    border-bottom: 2px solid #27ae60; 
    padding-bottom: 2px;
}
.warning { color: #f39c12; } /* زەرد بۆ نەگەیشتوو */
/* ساتیلی دوگمەکانی فلتەرکردنی ڕاپۆرت */
.report-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.filter-btn {
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--black-color);
    background-color: var(--white-color);
    border: 1px solid var(--line-color);
    transition: all 0.3s ease;
    font-weight: bold;
}

.filter-btn:hover {
    background-color: #f0f0f0;
}

/* ڕەنگی دوگمەی چالاک (ئەو ڕاپۆرتەی ئێستا کراوەتەوە) */
.filter-btn.active {
    background-color: var(--main-color);
    color: var(--white-color);
    border-color: var(--main-color);
}
/* گونجاندن بۆ شاشەی زۆر بچووک */
@media (max-width: 360px) {
    .report-grid {
        grid-template-columns: 1fr; /* لە شاشەی زۆر بچووک دەبێت بە یەک ستوون */
    }
}
@media only screen and (max-width: 768px) {
  .search-box { flex-direction: column; }
  .search-box button, .invoice-container button[type="submit"] { width: 100%; }
  .invoice-container table { font-size: 14px; }
  .invoice-container th, .invoice-container td { padding: 8px; }
}