/* Custom styles to complement Bootstrap dark theme */
.feature-icon {
    width: 48px;
    height: 48px;
    stroke-width: 1;
    color: var(--bs-info);
}

.card {
    border-color: rgba(255, 255, 255, 0.1);
    background-color: var(--bs-dark);
}

.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Breadcrumb styles */
.breadcrumb {
    padding: 0.5rem 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--bs-info);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--bs-info-text);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--bs-secondary-text);
}

/* Button loading state styles */
#analyzeButton {
    min-width: 120px;
}

#analyzeButton .spinner-border {
    width: 1rem;
    height: 1rem;
}

#analyzeButton:disabled {
    cursor: not-allowed;
    opacity: 0.75;
}

/* Print styles for report export */
@media print {
    .navbar, .footer, .btn {
        display: none !important;
    }

    body {
        background-color: white !important;
        color: black !important;
    }

    .card {
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}