.portal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #fafafa;
}

.portal-loading-bar {
    width: 260px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.portal-loading-fill {
    position: absolute;
    height: 100%;
    background: #1B4965;
    animation: portal-indeterminate 1.2s infinite ease-in-out;
}

@keyframes portal-indeterminate {
    0% { left: -40%; width: 40%; }
    50% { left: 60%; width: 40%; }
    100% { left: 100%; width: 10%; }
}

.portal-matrix-table input {
    text-align: center;
}

.srp-text {
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
}

.swatch-dot {
    border-radius: 50%;
    border: 1px solid var(--mud-palette-lines-default);
}

.mode-banner {
    background: var(--mud-palette-info-hover, rgba(33, 150, 243, 0.1));
    border-radius: 6px;
    padding: 8px 14px;
    line-height: 1.35;
}

.mode-banner-title {
    color: var(--mud-palette-info);
    font-weight: 600;
    font-size: 0.85rem;
}

.mode-banner-sub {
    color: var(--mud-palette-text-secondary);
    font-size: 0.78rem;
}

.colourway-card {
    display: flex;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
}

.colourway-card-active {
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 1px var(--mud-palette-primary);
}

.style-accordions .mud-expand-panel-header {
    padding-left: 0;
    padding-right: 0;
}
