/* —————————————————————
/// Burѕt‐Orange Theme v1.0
/* ————————————————————— */

:root {
  --burnt-orange: #cc5500;
  --burnt-orange-dark: #a94400;
  --burnt-orange-light: #ff7f2a;
  --off-white: #fdf8f3;
  --text-dark: #2b1e17;
  --muted-gray: #666;
}

/* Body & containers */
body {
  background-color: var(--off-white) !important;
  color: var(--text-dark) !important;
  font-family: 'Segoe UI','Helvetica Neue','Arial',sans-serif;
}

.content, .list-container, .search-header, .form-container {
  background-color: #fffaf6 !important;
  border: 1px solid rgba(204,85,0,0.2) !important;
  border-radius: 6px !important;
  padding: 16px !important;
}

/* Headers */
h1, h2, h3, .section-title {
  color: var(--burnt-orange) !important;
  margin-bottom: 12px;
}

/* Links */
a {
  color: var(--burnt-orange-dark) !important;
}
a:hover, a:focus {
  color: var(--burnt-orange-light) !important;
  text-decoration: underline !important;
}

/* Buttons & inputs */
button, .btn, input[type="submit"] {
  background-color: var(--burnt-orange) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 10px 18px !important;
  cursor: pointer !important;
}
button:hover, .btn:hover, input[type="submit"]:hover {
  background-color: var(--burnt-orange-dark) !important;
}

/* Form inputs & selects */
input[type="text"], input[type="search"], select {
  border: 1px solid rgba(204,85,0,0.4) !important;
  border-radius: 4px !important;
  padding: 8px !important;
  color: var(--text-dark) !important;
}
input[type="text"]:focus, input[type="search"]:focus, select:focus {
  border-color: var(--burnt-orange) !important;
  outline: none !important;
}

/* Tables & lists */
table {
  width: 100% !important;
  border-collapse: collapse !important;
}
th {
  background-color: var(--burnt-orange-light) !important;
  color: white !important;
  padding: 10px !important;
}
td {
  padding: 8px !important;
  border-bottom: 1px solid rgba(204,85,0,0.2) !important;
}

/* Alerts & notifications */
.alert, .notification {
  background-color: rgba(204,85,0,0.1) !important;
  border-left: 4px solid var(--burnt-orange) !important;
  padding: 12px !important;
  color: var(--muted-gray) !important;
}

/* Footer styling */
footer, .footer {
  background-color: var(--burnt-orange-dark) !important;
  color: #fff !important;
  padding: 16px !important;
  text-align: center !important;
}

/* Utility classes */
.text-highlight {
  color: var(--burnt-orange) !important;
}
.bg-highlight {
  background-color: rgba(204,85,0,0.05) !important;
}
