/* Global text color fix */
body {
    color: #000 !important;
    background-color: #fff !important;
}

/* Ensure input text is black */
input, textarea, select {
    color: #000 !important;
    background-color: #fff !important;
}

/* Only buttons with explicit bg-black class should have white text */
button.bg-black, a.bg-black, [class*="btn-"].bg-black,
.btn-primary, .btn-success, .btn-danger, .btn-dark {
    color: #fff !important;
}

/* Fix for specific component classes */
.header-logo,
.navbar-brand,
.sidebar-link,
.card-title,
.card-text,
#insights h2,
#add-document h2,
.text-gradient {
    color: #000 !important;
}

/* Fix for Bootstrap dark theme forcing white text */
[data-bs-theme=dark] {
    --bs-body-color: #000 !important;
    --bs-body-color-rgb: 0, 0, 0 !important;
    --bs-emphasis-color: #000 !important;
    --bs-emphasis-color-rgb: 0, 0, 0 !important;
    --bs-heading-color: #000 !important;
}

/* Fix for Bootstrap input placeholders */
::placeholder {
    color: #9ca3af !important;
    opacity: 1;
}

.track-description {
  color: #93979c !important; /* Tailwind gray-300 */
} 