﻿.jss10 {
    color: #00468b;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Nunito Sans', sans-serif !important;
}

.MuiTypography-root {
    color: rgba(0, 0, 0, 1);
    margin: 0;
    font-family: 'Nunito Sans', sans-serif !important;
}

.mud-datagrid-row-selected {
    background-color: color-mix(in srgb, var(--mud-palette-primary) 15%, transparent) !important;
    color: var(--mud-palette-text-primary) !important;
}

.overlay-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.overlay-wrapper.show {
    pointer-events: all;
    opacity: 1;
}

.overlay-wrapper.hide {
    pointer-events: none;
    opacity: 0;
}

.border-end {
    border-right: 2px solid #1976d2; /* MudBlazor primary color */
}

/* Hide legend inside MudChart */
.mud-chart .mud-chart-legend {
    display: none !important;
}

/* In case MudBlazor uses chart.js built-in legend block */
.mud-chart canvas + div {
    display: none !important;
}

.full-height-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 10px; /* adjust the bottom padding as needed */
}

.bottom-link {
    padding-bottom: 5px; /* optional extra padding just for this link */
}

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/*Claude */

.dashboard-card.highlight {
    border-left: 4px solid var(--primary-color);
}

.dashboard-card.danger {
    border-left: 4px solid var(--error-color);
}

.stat-card.large {
    padding: 32px;
}

.stat-card.large .stat-value {
    font-size: 48px;
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        transform: translateX(-100%);
        z-index: 1000;
    }
}

.status-complete {
    background-color: var(--mud-palette-success) !important;
    color: white !important;
}

.status-ready {
    background-color: var(--mud-palette-warning) !important;
    color: black !important;
}

.status-urgent {
    background-color: var(--mud-palette-error) !important;
    color: white !important;
}

.status-closed {
    background-color: var(--mud-palette-dark) !important;
    color: white !important;
}

.status-default {
    background-color: var(--mud-palette-secondary) !important;
    color: white !important;
}

/* For selected value inside the select input */
.mud-select-colored .mud-input-root {
    color: white !important;
}
