/* Custom styles for MisterEMuzik.ai */

/* Ensure all card body content has appropriate text color */
.card-body {
    color: #f8f9fa !important; /* Light text by default */
}

/* Ensure all text in audio analysis is light */
.audio-analysis-content {
    color: #f8f9fa !important;
}

/* Force all paragraphs in cards to have light text */
.card p {
    color: #f8f9fa !important;
}

/* Force table text to be light unless in a light table */
.table td, .table th {
    color: #f8f9fa !important;
}

.table-light td, .table-light th {
    color: #212529 !important;
}

/* Card title styling */
.card-title {
    color: #E2BB45 !important; /* Gold color for all card titles */
}

/* Text color for specific light backgrounds */
.bg-white p, .bg-light p {
    color: #212529 !important; /* Dark text for light backgrounds */
}
