/* -----------------------------------------------------
   GLOBAL
----------------------------------------------------- */

body {
    background-color: #000; /* pure black background */
    color: #f1f1f1;         /* readable light gray */
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.brand-text {
    color: #40e0d0 !important; /* teal branding */
}

/* Links */
a, .btn-link {
    color: #40e0d0 !important;
}
a:hover {
    color: #2bb8a8 !important;
}

/* -----------------------------------------------------
   FORMS
----------------------------------------------------- */

label {
    color: #e0e0e0 !important;      /* Light label color for visibility */
    font-weight: 500;
}

.form-control,
.form-select {
    background-color: #111 !important;
    border: 1px solid #333 !important;
    color: #f1f1f1 !important;
    border-radius: 0.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #40e0d0 !important;
    box-shadow: 0 0 0 0.15rem rgba(64,224,208,0.25);
}

/* Checkboxes */
.form-check-label {
    color: #f1f1f1 !important;
}

.form-check-input {
    background-color: #111 !important;
    border-color: #555 !important;
}
.form-check-input:checked {
    background-color: #40e0d0 !important;
    border-color: #40e0d0 !important;
}

/* -----------------------------------------------------
   BUTTONS
----------------------------------------------------- */

.btn-primary {
    background-color: #40e0d0 !important;
    border-color: #40e0d0 !important;
    color: #000 !important;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: #2bb8a8 !important;
    border-color: #2bb8a8 !important;
}

/* Outline buttons */
.btn-outline-light {
    border-color: #40e0d0 !important;
    color: #40e0d0 !important;
}
.btn-outline-light:hover {
    background-color: #40e0d0 !important;
    color: #000 !important;
}

/* -----------------------------------------------------
   CARDS
----------------------------------------------------- */

.card {
    background-color: #111 !important;
    border: 1px solid #262626 !important;
    border-radius: 0.75rem;
    color: #f1f1f1;
}

.card-title {
    color: #40e0d0;
    font-weight: 600;
}

/* -----------------------------------------------------
   TABLES
----------------------------------------------------- */

.table-dark {
    --bs-table-bg: #0d0d0d !important;
    --bs-table-striped-bg: #1a1a1a !important;
    --bs-table-striped-color: #fff !important;
    --bs-table-hover-bg: #222 !important;
}

.table thead th {
    color: #40e0d0 !important;
    border-bottom: 2px solid #40e0d0 !important;
}

/* -----------------------------------------------------
   BADGES
----------------------------------------------------- */

.badge-specialty {
    background-color: #40e0d0 !important;
    color: #000 !important;
    font-weight: 600;
}

/* -----------------------------------------------------
   NAVBAR
----------------------------------------------------- */

.navbar {
    background-color: #000 !important;
    border-bottom: 1px solid #2b2b2b !important;
}

.nav-link {
    color: #ccc !important;
}
.nav-link:hover {
    color: #40e0d0 !important;
}

.navbar-brand span,
.navbar-brand .brand-text {
    color: #40e0d0 !important;
}

/* -----------------------------------------------------
   VIDEO IFRAME WRAPPER
----------------------------------------------------- */

.ratio iframe {
    border-radius: 0.5rem;
    border: 1px solid #222 !important;
}

/* -----------------------------------------------------
   ALERTS
----------------------------------------------------- */

.alert-secondary {
    background-color: #222 !important;
    border-color: #333 !important;
    color: #ddd !important;
}

/* -----------------------------------------------------
   MISC
----------------------------------------------------- */

.hr-gray {
    border-top: 1px solid #555 !important;
}
