/* polyARB Dashboard — style.css (base styles) */

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--pa-border, #e5e7eb);
}

.algo-item {
    transition: background-color 0.15s;
}

.table-responsive {
    border-radius: 0.375rem;
    overflow: hidden;
}

/* Chart containers */
.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
}

/* Status badges */
.badge {
    font-size: 0.75em;
}

/* Alert positioning */
.alert {
    border-radius: 0.375rem;
}

/* HTMX loading spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
