/* MudBlazor component overrides - loaded AFTER MudBlazor.min.css for guaranteed specificity */

/* ===== Expansion Panels / Accordions ===== */
/* Blue accent border on the left side of all expansion panels */
.mud-expansion-panels {
    border-left: 4px solid #42A5F5;
    border-radius: 4px;
    overflow: hidden;
}

/* Subtle blue tint on accordion header background */
.mud-expansion-panel .mud-expand-panel-header {
    background-color: rgba(66, 165, 245, 0.06);
    border-bottom: 1px solid rgba(66, 165, 245, 0.2);
}

/* Stronger tint when expanded */
.mud-expansion-panel.mud-panel-expanded > .mud-expand-panel-header {
    background-color: rgba(66, 165, 245, 0.12);
    border-bottom: 2px solid #42A5F5;
}

/* ===== Tables ===== */
/* Subtle blue accent on table header row */
.mud-table .mud-table-head .mud-table-row th {
    border-bottom: 2px solid rgba(66, 165, 245, 0.4);
}

/* ===== Cards with elevation ===== */
/* Subtle top accent on elevated cards */
.mud-card.mud-elevation-3,
.mud-card.mud-elevation-2 {
    border-top: 2px solid rgba(66, 165, 245, 0.3);
}

/* ===== Paper sections ===== */
/* Blue left accent on elevated paper sections used as content panels */
.mud-paper.mud-elevation-2 {
    border-left: 3px solid rgba(66, 165, 245, 0.25);
}
