body { font-family: 'Inter', system-ui, sans-serif; background: #f8fafc; color: #1e293b; margin: 0; }
nav { background: #0f172a; color: white; padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; }
nav a { color: #94a3b8; text-decoration: none; margin-left: 15px; }
main { padding: 40px; max-width: 1200px; margin: 0 auto; }
.menu { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.card { background: white; padding: 30px; border-radius: 12px; text-decoration: none; color: #1e293b; font-weight: 600; text-align: center; border: 1px solid #e2e8f0; transition: 0.2s; }
.card:hover { border-color: #3b82f6; box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }
form { background: white; padding: 30px; border-radius: 12px; border: 1px solid #e2e8f0; margin-bottom: 30px; }
label { display: block; margin-top: 10px; font-weight: 600; font-size: 14px; color: #64748b; }
input, select, textarea { width: 100%; padding: 10px; margin-top: 5px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 15px; box-sizing: border-box; }
button { background: #2563eb; color: white; border: none; padding: 12px; border-radius: 6px; cursor: pointer; font-weight: 600; width: 100%; margin-top: 15px; }
.btn-del { background: none; color: #ef4444; width: auto; margin: 0; padding: 5px; cursor: pointer; font-size: 18px; }
.btn-pdf { background: #059669; width: auto; padding: 10px 20px; margin: 0; color: white; border: none; border-radius: 6px; cursor: pointer; }
.btn-secondary { color: #64748b; text-decoration: none; margin-right: 15px; font-size: 14px; }
table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; margin-top: 20px; }
th { background: #f1f5f9; text-align: left; padding: 12px; border-bottom: 2px solid #e2e8f0; font-size: 12px; color: #475569; }
th a { color: inherit; text-decoration: none; display: block; width: 100%; }
td { padding: 12px; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
.summary-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.rating-box { background: white; padding: 20px; border-radius: 12px; border: 1px solid #e2e8f0; margin-bottom: 30px; }
.rating-grid { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 10px; }
.rating-item { background: #f1f5f9; padding: 8px 15px; border-radius: 20px; font-size: 14px; border: 1px solid #e2e8f0; }
.rating-item span { color: #2563eb; font-weight: bold; }
.login-page { display: flex; align-items: center; justify-content: center; height: 100vh; background: #0f172a; }
.error { background: #fee2e2; color: #b91c1c; padding: 10px; border-radius: 6px; margin-bottom: 10px; border: 1px solid #fecaca; }

@media print {
    .no-print, nav, .btn-pdf, .btn-secondary, form, .btn-del, .rating-box { display: none !important; }
    body { background: white; }
    main { padding: 0; max-width: 100%; }
    table { box-shadow: none; border: 1px solid #eee; font-size: 10px; }
    th { background: #eee !important; color: black; }
    th a { pointer-events: none; }
}