/* style.css */
body { font-family: Arial, sans-serif; background:#f4f6f8; margin:0; padding:20px; color:#222; }
.container { max-width:1000px; margin:0 auto; background:white; padding:20px; border-radius:6px; box-shadow:0 2px 8px rgba(0,0,0,0.05);}
header { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px;}
h1 { margin:0; font-size:20px;}
.right { display:flex; gap:8px; align-items:center;}
.btn, button { background:#1976d2; color:white; border:none; padding:8px 12px; border-radius:4px; cursor:pointer; text-decoration:none;}
.btn:hover, button:hover { opacity:0.95; }
.form-section, .list-section { margin-top:16px; }
.row { display:flex; gap:8px; margin-bottom:8px; }
.row input, textarea { flex:1; padding:8px; border:1px solid #ddd; border-radius:4px; font-size:14px;}
textarea { min-height:80px; resize:vertical; }
.table-like .row input { flex: 0 1 18%; }
table { width:100%; border-collapse:collapse; margin-top:8px; }
table th, table td { padding:8px; text-align:left; border:1px solid #eee; font-size:13px; }
.form-actions { margin-top:8px; display:flex; gap:8px; }
.btn-edit, .btn-delete { margin-right:6px; padding:6px 8px; border-radius:4px; }
.btn-edit { background:#0288d1; color:white; border:none; }
.btn-delete { background:#d32f2f; color:white; border:none; }
#filter { width:100%; padding:8px; margin-bottom:8px; border:1px solid #ddd; border-radius:4px; }
@media (max-width:800px) { .row { flex-direction:column; } .table-like .row input { flex-basis:100%; } }
