/* Theme-aware styling fixes for homepage */

/* Homepage cards styling that adapts to light/dark mode */
[data-bs-theme="light"] .jumbotron {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

[data-bs-theme="dark"] .jumbotron {
    background-color: #343a40 !important;
    color: #ffffff !important;
}

[data-bs-theme="light"] .card.bg-body-secondary {
    background-color: #ffffff !important;
    color: #212529 !important;
    border: 1px solid #dee2e6 !important;
}

[data-bs-theme="dark"] .card.bg-body-secondary {
    background-color: #495057 !important;
    color: #ffffff !important;
    border: 1px solid #6c757d !important;
}

/* Ensure card titles and text are visible */
[data-bs-theme="light"] .card-title,
[data-bs-theme="light"] .card-text {
    color: #212529 !important;
}

[data-bs-theme="dark"] .card-title,
[data-bs-theme="dark"] .card-text {
    color: #ffffff !important;
}

/* Button visibility improvements */
[data-bs-theme="light"] .btn-secondary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}

[data-bs-theme="dark"] .btn-secondary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}