/* admin-dashboard.css: Modern, sleek dashboard styles */
body {
    background: #f4f6f9;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.admin-sidebar {
    background: #232946;
    color: #fff;
    min-height: 100vh;
    padding: 30px 0 0 0;
    position: fixed;
    width: 220px;
    top: 0;
    left: 0;
    box-shadow: 2px 0 8px rgba(0,0,0,0.04);
}
.admin-sidebar h3 {
    color: #eebbc3;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}
.admin-sidebar a {
    color: #fff;
    display: block;
    padding: 12px 30px;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: background 0.2s, border 0.2s;
}
.admin-sidebar a.active, .admin-sidebar a:hover {
    background: #eebbc3;
    color: #232946;
    border-left: 4px solid #232946;
}
.admin-content {
    margin-left: 240px;
    padding: 40px 30px;
}
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 30px;
    margin-bottom: 30px;
}
.card h2 {
    font-size: 2rem;
    color: #232946;
    margin-bottom: 20px;
}
.btn-primary {
    background: #232946;
    border: none;
    border-radius: 6px;
    color: #fff;
    padding: 10px 24px;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: #eebbc3;
    color: #232946;
}
.btn-danger {
    background: #e63946;
    border: none;
    border-radius: 6px;
    color: #fff;
    padding: 10px 24px;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-danger:hover {
    background: #232946;
    color: #fff;
}
@media (max-width: 900px) {
    .admin-sidebar { width: 100%; min-height: auto; position: static; }
    .admin-content { margin-left: 0; padding: 20px 10px; }
}
