.btn-pink {
  background-color: #d36bb9;
  border-color: #d36bb9;
  color: #fff; /* Optional: Set text color */
  letter-spacing: 0.8px;
}

.btn-pink:hover {
  background-color: #d36bb9; /* Background color */
  border-color: #b05799; /* Border color */
  color: white; /* Text color */
  opacity: 90%;
}

.btn-purple {
  background-color: #55034d;
  border-color: #55034d;
  color: white; /* Optional: Set text color */
  letter-spacing: 0.8px;
}

.btn-purple:hover {
  background-color: #55034d; /* Background color */
  border-color: #55034d; /* Border color */
  color: white; /* Text color */
  opacity: 90%;
}

.thead-pandapp {
  font-weight: bold;
  background-color: red;
}

.alert-banner-wbg-pandapp {
  background-color: white;
  font-weight: 450;
}

/* PRINT CSS */
.signature-section {
  display: none;
}
.column {
  width: 30%;
}
.line {
  display: block;
  margin: 0 auto 10px;
  width: 80%;
  border-bottom: 1px solid #000;
}
.print-header {
  display: none;
}
.print-area2 {
  display: none;
}

.th-prodreport-items {
  background-color: #fff6e6;
  color: #2c2c2c;
}
@media print {
  .print-body-invoice {
    padding-left: 10px;
    padding-right: 10px;
  }
  .print-body {
    padding-left: 70px;
    padding-right: 70px;
  }
  .print-header {
    display: block; /* Show custom header during print */
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .signature-section {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 80px;
    font-size: 12px;
  }

  .column {
    width: 30%;
  }

  .line {
    display: block;
    margin: 0 auto 10px;
    width: 80%;
    border-bottom: 1px solid #000;
  }
  .hide-column {
    display: none;
  }
  .print-area1 {
    display: none;
  }
  .print-visible {
    display: none;
  }
  .print-visible-alert {
    display: none;
  }
  .print-area2 {
    display: block;
  }
  .print-fontsize {
    font-size: 11px;
  }
  .print-table-lineHeight {
    line-height: 1px;
  }
  .print-table-lineHeight-invoice {
    line-height: 5px;
  }
  .colored-header-purple th {
    color: #020202 !important;
    line-height: 8px !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  .table-tbody {
    line-height: 0px !important;
    font-size: 9px !important;
  }
  .table-order-summary {
    width: 65% !important;
    margin: auto !important;
  }
}
.print-area1 {
  line-height: 23px;
}
.print-visible {
  line-height: 40px;
}

/* --PRINT CSS */

.table-tbody {
  font-size: 12px;
  line-height: 15px;
}

.colored-header-purple th {
  background-color: #55034dda !important;
  /* background-color: #fff6e6 !important; */
  color: #f1f1f1 !important;
}

/* INVOICE TABLE Styles scoped to the table with the "unique-table" class */
.unique-table {
  border-collapse: collapse; /* Ensures borders don't double up */
  width: 100%; /* Optional: Makes the table take full width */
}

.unique-table,
.unique-table tr:first-child th,
.unique-table tr:last-child td {
  border: 1px solid black; /* Outer border */
}

.unique-table th,
.unique-table td {
  padding: 8px; /* Adds some space inside cells */
  text-align: left; /* Aligns text to the left */
}

.unique-table tr td + td,
.unique-table tr th + th {
  border-left: none; /* Removes internal column borders */
}

.payroll-table {
  color: rgba(0, 0, 0, 0.966);
  font-size: 11px;
  border-collapse: collapse; /* Ensures borders don't double up */
  width: 100%; /* Optional: Makes the table take full width */
}

.payroll-table,
.payroll-table tr:first-child th,
.payroll-table tr:last-child td {
  border: 1px solid rgba(61, 61, 61, 0.507); /* Outer border */
}

.payroll-table th {
  font-weight: 500;
}
.payroll-table th,
.payroll-table td {
  padding: 5px 5px; /* Adds some space inside cells */
  text-align: left; /* Aligns text to the left */
  border: 1px solid rgba(61, 61, 61, 0.507); /* Outer border */
}

.payroll-table tr td + td,
.payroll-table tr th + th {
  border: 1px solid rgba(61, 61, 61, 0.507); /* Outer border */
}
/* // INVOICE TABLE Styles scoped to the table with the "unique-table" class */

.input-group.input-group-sm .form-control,
.input-group.input-group-sm .input-group-text {
  font-size: 12px;
  padding: 3px 8px;
}

.payroll-side-navigation {
  display: none; /* Hide by default */
}

.payroll-horizontal-navigation {
  display: block; /* Hide by default */
}

@media (max-width: 576px) {
  .payroll-side-navigation {
    display: block !important;
  }
  .payroll-horizontal-navigation {
    display: none !important;
  }
}

table tr:nth-child(odd) {
  background-color: #f2f2f2; /* Light gray */
}
table tr:nth-child(even) {
  background-color: #ffffff; /* White */
}
