/* OwndUp - Responsibility Ledger */
/* Custom styles */

html, body {
    font-family: 'Roboto', sans-serif;
}

.mud-alert-message {
    width: 100%;
}

/* Status indicators */
.status-owned {
    color: var(--mud-palette-success);
}

.status-pending {
    color: var(--mud-palette-warning);
}

.status-unowned {
    color: var(--mud-palette-error);
}

/* Fix for validation messages */
.validation-message {
    color: var(--mud-palette-error);
    font-size: 0.75rem;
    margin-top: 4px;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .mud-table-cell {
        padding: 8px !important;
    }
}
