/* Minimal custom styles - Bootstrap-first approach */
/* Only include styles that truly add value or are business-specific */

/* Note: Button colors are now handled by company theme CSS variables */

/* Card hover effect (enhances UX) */
.tool-card:hover {
    transform: translateY(-5px);
}

/* Business-specific recommendation colors (required for financial tools) */
.recommendation-excellent {
    background-color: #d1e7dd;
    border-color: #198754;
    color: #0f5132;
}

.recommendation-decent {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #664d03;
}

.recommendation-avoid {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

/* Benchmark styles (for ROI analysis) */
.benchmark-excellent {
    background-color: #d1e7dd;
    color: #0f5132;
}

.benchmark-decent {
    background-color: #fff3cd;
    color: #664d03;
}

.benchmark-poor {
    background-color: #f8d7da;
    color: #721c24;
}

/* Utility class for scrollable containers (business-specific height) */
.optimization-history-container {
    max-height: 400px;
    overflow-y: auto;
}

/* Breadcrumb navigation styling (uses company theme colors) */
.hover-opacity:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease-in-out;
}

/* Enhanced breadcrumb styling for combined nav + title */
nav[aria-label="breadcrumb"] .bg-primary {
    min-height: 3rem;
}

/* Current page styling - serves as page title */
nav[aria-label="breadcrumb"] .fw-bold.fs-5 {
    font-size: 1.25rem !important;
    letter-spacing: 0.025em;
}

/* User dropdown in breadcrumb */
nav[aria-label="breadcrumb"] .user-menu .btn {
    border-color: rgba(255, 255, 255, 0.5);
}

nav[aria-label="breadcrumb"] .user-menu .btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.75);
}

/* Breadcrumb responsive enhancements */
@media (max-width: 767.98px) {
    nav[aria-label="breadcrumb"] .bg-primary {
        font-size: 0.9rem;
        min-height: 2.5rem;
    }

    /* Hide email text on mobile, show only icon */
    nav[aria-label="breadcrumb"] .user-menu .btn {
        padding: 0.25rem 0.5rem;
    }
}

/* 
Note: The following are handled by Bootstrap classes and should NOT be added here:
- .d-none (use Bootstrap's d-none)
- .text-center (use Bootstrap's text-center)
- .mb-3, .mt-3 (use Bootstrap's margin utilities)
- .flex-fill (use Bootstrap's flex-fill)
- Background colors like #f8f9fa (use Bootstrap's bg-light)
- Padding/margins (use Bootstrap spacing utilities)
- Border radius (use Bootstrap's rounded classes)
*/
