/* ==========================================================================
   Provenher CSS Style Sheet - Sleek Dark Premium Theme
   ========================================================================== */

:root {
  --bg-color: #0b0f19;
  --card-bg: rgba(17, 24, 39, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #1f2937;
  
  /* Harmonious Color Accents */
  --primary: #2563eb;
  --primary-glow: rgba(37, 99, 235, 0.3);
  --success: #10b981;
  --danger: #ef4444;
  
  /* Brand-specific variables */
  --bremen: #e53e3e;
  --bremen-glow: rgba(229, 62, 62, 0.2);
  --wembley: #d69e2e;
  --wembley-glow: rgba(214, 158, 46, 0.2);
  
  --active-brand-color: var(--bremen);
  --active-brand-glow: var(--bremen-glow);
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(at 10% 20%, rgba(37, 99, 235, 0.08) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(229, 62, 62, 0.05) 0px, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Login Page Styles
   ========================================================================== */
.login-body {
  justify-content: center;
  align-items: center;
  position: relative;
}

.login-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.login-container {
  width: 100%;
  max-width: 440px;
  padding: 20px;
  z-index: 1;
}

.login-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.logo-area {
  text-align: center;
  margin-bottom: 30px;
}

.provenher-logo-main {
  width: 180px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.logo-area h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.logo-area .subtitle {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.error-msg {
  color: var(--danger);
  font-size: 13px;
  min-height: 20px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

/* Inputs & Labels */
.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input[type="text"],
input[type="password"],
input[type="number"],
select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 14px;
  transition: var(--transition);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: var(--active-brand-color, var(--primary));
  box-shadow: 0 0 0 3px var(--active-brand-glow, var(--primary-glow));
  background: rgba(255, 255, 255, 0.06);
}

.input-readonly {
  background: rgba(255, 255, 255, 0.01) !important;
  border-color: rgba(255, 255, 255, 0.04) !important;
  color: #c4b5fd !important;
  cursor: not-allowed;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 10px 20px;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background: var(--active-brand-color, var(--primary));
  color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: 0 4px 12px var(--active-brand-glow, var(--primary-glow));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.btn-accent {
  background: var(--success);
  color: #ffffff;
}

.btn-accent:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
}

.btn-outline:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   Dashboard Layout & Sidebar
   ========================================================================== */
.app-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: rgba(10, 15, 25, 0.95);
  border-right: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.sidebar-logo {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--card-border);
}

.provenher-header-logo {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.05));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #ffffff;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-nav {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-item .icon {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.nav-item:hover:not(.disabled-nav) {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.nav-item.active {
  background: var(--active-brand-color);
  color: #ffffff;
  box-shadow: 0 4px 12px var(--active-brand-glow);
}

.nav-item.active .icon {
  color: #ffffff;
}

.nav-item.disabled-nav {
  opacity: 0.35;
  cursor: not-allowed;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.user-info-sidebar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--active-brand-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 0 10px var(--active-brand-glow);
  transition: var(--transition);
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-details .user-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
}

.user-details .user-role {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Main Content Area */
.main-content {
  margin-left: 260px;
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-navbar {
  background: rgba(11, 15, 25, 0.7);
  border-bottom: 1px solid var(--card-border);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(12px);
}

.top-navbar h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.server-status-tag {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.view-container {
  padding: 30px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.app-view {
  animation: viewFadeIn 0.35s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
}

@keyframes viewFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   List View Components
   ========================================================================== */
.list-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.search-box-container {
  position: relative;
  flex: 1;
  max-width: 450px;
}

.search-box-container input {
  padding-left: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.search-box-container input:focus {
  border-color: var(--active-brand-color);
  box-shadow: 0 0 0 3px var(--active-brand-glow);
  background: rgba(255, 255, 255, 0.06);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  pointer-events: none;
}

.list-filters-bar {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 20px;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-group label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.filter-group select {
  padding: 6px 12px;
  font-size: 13px;
  min-width: 180px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-main);
  transition: var(--transition);
}

.filter-group select:focus {
  border-color: var(--active-brand-color);
  outline: none;
  box-shadow: 0 0 0 2px var(--active-brand-glow);
}

.editor-header-actions {
  margin-bottom: 20px;
}

/* Card base */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.2);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.section-desc {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 20px;
}

/* ==========================================================================
   Config Grid & Brand Selector
   ========================================================================== */
.config-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .config-grid {
    grid-template-columns: 1fr;
  }
}

.brand-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.brand-option-label {
  cursor: pointer;
}

.brand-option-label input[type="radio"] {
  display: none;
}

.brand-option-box {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.brand-option-box img {
  height: 28px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(1);
  transition: var(--transition);
}

.brand-option-box span {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
}

.brand-option-label input[type="radio"]:checked + .brand-option-box {
  background: rgba(255, 255, 255, 0.04);
  filter: none;
}

.label-bremen input[type="radio"]:checked + .brand-option-box {
  border-color: var(--bremen);
  box-shadow: 0 0 12px var(--bremen-glow);
}
.label-bremen input[type="radio"]:checked + .brand-option-box img {
  opacity: 1;
  filter: none;
}
.label-bremen input[type="radio"]:checked + .brand-option-box span {
  color: var(--bremen);
}

.label-wembley input[type="radio"]:checked + .brand-option-box {
  border-color: var(--wembley);
  box-shadow: 0 0 12px var(--wembley-glow);
}
.label-wembley input[type="radio"]:checked + .brand-option-box img {
  opacity: 1;
  filter: none;
}
.label-wembley input[type="radio"]:checked + .brand-option-box span {
  color: var(--wembley);
}

.doc-info-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* ==========================================================================
   Client Card & Search
   ========================================================================== */
.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.info-tag {
  background: rgba(37, 99, 235, 0.12);
  color: #60a5fa;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.client-search-wrapper {
  margin-bottom: 20px;
}

.search-input-container {
  position: relative;
  width: 100%;
}

.search-input-container input {
  padding-right: 40px;
  font-size: 15px;
}

.spinner {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--active-brand-color, var(--primary));
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.autocomplete-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 50;
  max-height: 250px;
  overflow-y: auto;
}

.autocomplete-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.autocomplete-item .match-title {
  font-weight: 600;
  color: #ffffff;
}

.autocomplete-item .match-detail {
  font-size: 11px;
  color: var(--text-muted);
}

.client-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

/* ==========================================================================
   Spreadsheet / Table Items
   ========================================================================== */
.table-container {
  width: 100%;
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--card-border);
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: 10px 15px;
  vertical-align: middle;
}

th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--card-border);
}

td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.items-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

/* Table inputs */
.items-table input {
  padding: 8px 10px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

.items-table input:focus {
  background: rgba(255, 255, 255, 0.05);
}

.items-table .cell-center {
  text-align: center;
}

.items-table .cell-right {
  text-align: right;
  font-weight: 600;
}

.btn-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-size: 18px;
}

.btn-remove:hover {
  color: var(--danger);
}

.items-footer-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 768px) {
  .items-footer-flex {
    grid-template-columns: 1fr;
  }
}

.items-instructions {
  background: rgba(255, 255, 255, 0.01);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.totals-panel {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.totals-row .label {
  color: var(--text-muted);
  font-size: 13px;
}

.totals-row .value {
  font-weight: 600;
  font-size: 14px;
}

.total-highlight {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  margin-top: 5px;
}

.total-highlight .label {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

.total-highlight .value {
  color: var(--active-brand-color);
  font-size: 20px;
  font-weight: 800;
}

/* ==========================================================================
   Actions and Status Section
   ========================================================================== */
.actions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.status-box {
  display: none;
  width: 100%;
  max-width: 600px;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  animation: fadeIn 0.3s ease;
}

.status-success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-error {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-info {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.actions-buttons-bar {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* ==========================================================================
   Past Budgets Card
   ========================================================================== */
.past-table th {
  background: rgba(255, 255, 255, 0.02);
}

.past-table tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

/* ==========================================================================
   Modal for PDF Preview
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #111827;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  height: 85%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #ffffff;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: #ffffff;
}

.modal-body {
  flex: 1;
  position: relative;
  background: #2d3748;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
  border-top: 1px solid var(--card-border);
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

/* ==========================================================================
   Search Autocomplete & Helper Modals Overrides
   ========================================================================== */
.row-product-dropdown {
  width: 450px !important;
  min-width: 450px !important;
  z-index: 10000 !important;
}

#view-editor .table-container {
  min-height: 350px;
}

#search-client-helper-modal .modal-content,
#search-product-helper-modal .modal-content {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

#search-client-helper-modal .table-container,
#search-product-helper-modal .table-container {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

#search-client-helper-modal th,
#search-product-helper-modal th {
  position: sticky;
  top: 0;
  background: #1f2937;
  z-index: 2;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.modal-body select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px;
  color: var(--text-main) !important;
  padding: 10px 16px;
  height: 42px;
  font-size: 14px;
}

.modal-body select:focus {
  border-color: var(--active-brand-color, var(--primary)) !important;
  box-shadow: 0 0 0 3px var(--active-brand-glow, var(--primary-glow)) !important;
}

/* Global Select Options styling to prevent white-on-white text in Windows/Chrome/Edge */
select option {
  background-color: #1f2937 !important;
  color: #ffffff !important;
}


