/* src/static/css/admin.css */
body { 
    background-color: #f8fafc !important; 
    margin: 0; 
    font-family: sans-serif; 
}
.admin-card { 
    background: white; 
    border-radius: 2rem; 
    border: 1px solid #e2e8f0; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
}
.sidebar-item { 
    padding: 1rem; 
    display: block; 
    color: #94a3b8; 
    text-decoration: none; 
    border-radius: 1rem; 
}
.sidebar-item.active { 
    background: #4f46e5; 
    color: white; 
}
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    color: white;
    font-weight: bold;
    z-index: 999;
    transition: opacity 0.5s;
}