#adm-root {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    margin: 0;
    padding: 0;
}
.adm-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.adm-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.adm-header h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
}
.adm-header p {
    margin: 0.5rem 0 0 0;
    color: #94a3b8;
}
.adm-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.adm-btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.5);
}
.adm-btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}
.adm-btn-outline {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #475569;
}
.adm-btn-outline:hover {
    background: #f1f5f9;
}
.adm-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.adm-stat-card {
    padding: 1.5rem;
    border-radius: 16px;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}
.adm-stat-card:hover {
    transform: scale(1.02);
}
.adm-stat-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    background: rgba(255,255,255,0.2);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.adm-stat-info h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    color: #fff;
}
.adm-stat-val {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
}
.adm-dashboard-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.adm-section h2 {
    margin-top: 0;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}
.adm-spaces-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.adm-space-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s ease;
}
.adm-space-row:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.adm-space-title strong {
    font-size: 1.1rem;
    color: #0f172a;
    display: block;
}
.adm-space-title span {
    font-size: 0.85rem;
    color: #64748b;
}
.adm-loader {
    text-align: center;
    color: #64748b;
    padding: 2rem;
    font-weight: 500;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
.adm-form-panel {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}
.adm-form-panel label {
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}
.adm-form-panel input, .adm-form-panel textarea {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.2s;
}
.adm-form-panel input:focus, .adm-form-panel textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
