/* EDUCATIONAL ENTERPRISE COLOR OVERRIDE */
/* Force new color system across all elements */

/* Global background */
body, html {
    background-color: #f8fafc !important;
}

/* Navbar styling */
.navbar {
    background-color: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.navbar-brand {
    color: #1e293b !important;
    font-weight: 600 !important;
}

.nav-link {
    color: #64748b !important;
    font-weight: 500 !important;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a !important;
}

.navbar-toggler {
    border-color: #e2e8f0 !important;
}

/* Button system */
.btn-success {
    background-color: #059669 !important;
    border-color: #059669 !important;
    color: white !important;
}

.btn-warning {
    background-color: #d97706 !important;
    border-color: #d97706 !important;
    color: white !important;
}

.btn-danger {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
    color: white !important;
}

.btn-secondary {
    background-color: #64748b !important;
    border-color: #64748b !important;
    color: white !important;
}

/* Alert system */
.alert-success {
    background-color: #f0fdf4 !important;
    border-color: #bbf7d0 !important;
    color: #166534 !important;
}

.alert-warning {
    background-color: #fffbeb !important;
    border-color: #fde68a !important;
    color: #78350f !important;
}

.alert-danger {
    background-color: #fef2f2 !important;
    border-color: #fecaca !important;
    color: #991b1b !important;
}

/* Card system */
.card {
    background-color: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.card-header {
    background-color: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

/* Progress bars */
.progress-bar {
    background-color: #059669 !important;
}

.bg-success {
    background-color: #059669 !important;
}

.bg-warning {
    background-color: #d97706 !important;
}

.bg-danger {
    background-color: #dc2626 !important;
}

.text-success {
    color: #059669 !important;
}

.text-warning {
    color: #d97706 !important;
}

.text-danger {
    color: #dc2626 !important;
}

.text-secondary {
    color: #64748b !important;
}

/* Typography Improvements */
body, p, div, span {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Professional paragraph styling */
p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #475569;
}

/* Professional text utilities */
.text-xs { font-size: 0.75rem; line-height: 1.5; }
.text-sm { font-size: 0.875rem; line-height: 1.6; }
.text-base { font-size: 1rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; line-height: 1.6; }
.text-xl { font-size: 1.25rem; line-height: 1.5; }

/* Font weight utilities */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Professional small text */
small, .small {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
    font-weight: 400;
}

/* Professional muted text */
.text-muted {
    color: #64748b !important;
    font-weight: 400;
}