/* Base settings */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-feature-settings: 'cv05' 1;
    background-color: #f5f7fa;
    /* Light background for contrast */
    min-height: 100vh;
}

/* Status Dot Animation */
.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #48c774;
    /* Bulma success color */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(72, 199, 116, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(72, 199, 116, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(72, 199, 116, 0);
    }
}

/* Table Enhancements */
.table th.sortable {
    white-space: nowrap;
}

.table th.sortable:hover {
    background-color: #eff1fa;
    color: #3273dc;
}

/* Sort Indicators */
.sort-indicator {
    margin-left: 0.5em;
    color: #b5b5b5;
    transition: color 0.2s;
}

th.sort-asc .sort-indicator,
th.sort-desc .sort-indicator {
    color: #3273dc;
}

th.sort-asc .sort-indicator i {
    transform: rotate(180deg);
    /* Font Awesome sort-up is implied by logic or just generic sort icon */
}

/* Card tweaks */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
}

/* Responsive Utilities (Bulma has these, but ensuring specific behavior) */
@media screen and (max-width: 1023px) {
    .table-container {
        overflow-x: auto;
    }
}