body {
    margin: 0;
    font-family: "Quicksand", "Trebuchet MS", sans-serif;
    background: #FAF7F2;
    color: #3A3A3A;
}
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: #EADFCB; padding: 20px; }
.admin-sidebar a { display: block; margin: 10px 0; color: #3A3A3A; text-decoration: none; font-weight: 600; }
.admin-main { padding: 30px; }
.login-card { max-width: 420px; margin: 80px auto; background: #FFFFFF; padding: 30px; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.btn { background: #F2C97D; color: #FFFFFF; border: none; padding: 10px 16px; border-radius: 999px; font-weight: 700; cursor: pointer; }
.table { width: 100%; border-collapse: collapse; background: #FFFFFF; border-radius: 12px; overflow: hidden; }
.table th, .table td { padding: 12px; border-bottom: 1px solid #eee; text-align: left; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.admin-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card { background: #FFFFFF; padding: 16px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.tabs { display: flex; gap: 10px; margin-bottom: 20px; }
.tab-btn { background: #BFD8C2; border: none; padding: 10px 14px; border-radius: 10px; cursor: pointer; }
.tab-btn.active { background: #7FAF9B; color: #FFFFFF; }
.tab-panel { display: none; background: #FFFFFF; padding: 16px; border-radius: 12px; }
.tab-panel.active { display: block; }
.alert.error { background: #F2C97D; padding: 10px; border-radius: 10px; }
.table-actions { display: flex; gap: 8px; align-items: center; }
.inline-form { display: inline; }

.btn.secondary { background: #7FAF9B; }
.btn.danger { background: #D9A8A8; }

.admin-form {
    display: grid;
    gap: 10px;
    margin: 10px 0 16px;
}
.admin-form.inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.admin-form.compact { margin: 0; }
.admin-form label { font-weight: 600; }
.admin-form input,
.admin-form textarea,
.admin-form select {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    font-family: inherit;
    background: #FAF7F2;
}
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: 2px solid #BFD8C2;
    border-color: #BFD8C2;
}
