/* App-specific styles to complement Bulma */

html, body {
    background: #f5f7fa;
}

.app-page {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Stat cards */
.app-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-stat-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.app-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.app-muted {
    color: #7a7a7a;
}

/* Scrollable boxes (recipient lists, etc.) */
.app-scroll-box {
    max-height: 300px;
    overflow: auto;
}

/* Loading state */
.app-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
    color: #7a7a7a;
}

.app-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #dbdbdb;
    border-top-color: #3273dc;
    border-radius: 50%;
    animation: app-spin 1s linear infinite;
}

@keyframes app-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Small helpers */
.app-gap-2 {
    gap: 0.75rem;
}
