/* Implemented on Apr 14 2026*/
/* By Murali Aadhitya */

/* Filter Panel Styles */
.filter-panel {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.filter-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 180px;
}
.filter-group label.group-label {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #666;
  text-transform: uppercase;
}

/* Force all inputs and dropdowns to the exact same dimensions */
.filter-group input[type="text"],
.filter-group input[type="number"],
.filter-group select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff;
  height: 42px;
}

.advanced-header {
  width: 100%;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Checkbox Styles - Bulletproof Horizontal Row */
.checkbox-group {
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.checkbox-group label.group-label {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0px;
  color: #666;
  text-transform: uppercase;
}
.checkbox-label {
  display: inline-flex !important;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  color: #333;
  font-weight: normal;
  white-space: nowrap;
  width: auto !important;
  margin-bottom: 0;
  padding-left: 25px;
}

/* Pagination Styles */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 15px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.pagination-controls button {
  padding: 8px 16px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}
.pagination-controls button:hover:not(:disabled) {
  background-color: #f0f0f0;
}
.pagination-controls button:disabled {
  color: #aaa;
  cursor: not-allowed;
  background-color: #fafafa;
}
.pagination-controls span {
  margin: 0 15px;
  font-weight: bold;
}
