/* J&T Express Sales Dashboard — Custom Styles */

/* Filter dropdowns focus */

/* Table header */
.table-header-jnt {
  background-color: #CD001A;
  color: #FFFFFF;
}

/* Table row hover */
.table-row-hover:hover {
  background-color: #FEF2F2;
}

/* Progress bar container */
.progress-bar-bg {
  background-color: #E5E7EB;
  border-radius: 9999px;
  height: 20px;
  min-width: 80px;
  overflow: hidden;
  position: relative;
}

/* Progress bar fill */
.progress-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: fit-content;
}

/* Progress bar text */
.progress-bar-text {
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 0 6px;
  white-space: nowrap;
}

/* Progress bar 0% — text outside bar */
.progress-bar-text-outside {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Section header */
.section-header {
  color: #CD001A;
  border-bottom: 2px solid #CD001A;
  padding-bottom: 4px;
}

/* Scrollable table wrapper */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Select dropdown focus */
select:focus {
  outline: none;
  border-color: #CD001A;
  box-shadow: 0 0 0 2px rgba(205, 0, 26, 0.15);
}

/* Date input focus */
input[type="date"]:focus {
  outline: none;
  border-color: #CD001A;
  box-shadow: 0 0 0 2px rgba(205, 0, 26, 0.15);
}

/* Smooth loading transition */
#tables-container {
  transition: opacity 0.2s ease;
}
