/* AdminX structural styles — only classes with no Radzen theme dependency.
   Radzen chrome (sidebar/header/grid colors) comes from the stock <RadzenTheme> now. */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

.site-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.site-title span {
    color: #4f6ef7;
}

/* Cards */
.admin-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.admin-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

/* Page headers */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.page-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Badges */
.badge-success {
    background: #d1fae5;
    color: #065f46;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Utility */
.text-muted {
    color: #8892a4;
    font-size: 0.875rem;
}

.error-message {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #dc2626;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
