/* ===== Custom Theme Overrides for AI Business Buddy ===== */

/* Global Font */
body {
    font-family: 'Nunito', sans-serif;
    color: #374151; /* Dark gray text */
}

/* Primary Brand Color (Dark Blue) */
.bg-gradient-primary {
    background: linear-gradient(90deg, #1e3a8a, #2563eb) !important;
}

.text-primary {
    color: #1e3a8a !important;
}

.btn-primary {
    background-color: #1e3a8a !important;
    border-color: #1e3a8a !important;
}
.btn-primary:hover {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
}

/* Secondary Accent (Cyan) */
.text-secondary {
    color: #06b6d4 !important;
}
.bg-secondary {
    background-color: #06b6d4 !important;
}

/* Navbar Styling */
.navbar-brand {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff !important;
}
.navbar-brand sup {
    color: #06b6d4; /* Accent on Buddy */
}

/* Topbar User Name */
.navbar .nav-link .small {
    font-weight: 600;
    color: #f8fafc !important;
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: 0.5rem;
    border: none;
}
.dropdown-item:hover {
    background-color: #f1f5f9;
    color: #1e3a8a;
    font-weight: 500;
}

/* Footer */
footer {
    font-size: 0.9rem;
    color: #6b7280; /* Muted text */
}

/* Cards & Containers */
.card {
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
