/* admin/style.css */
body { font-family: 'Inter', sans-serif; background-color: #f4f7f6; color: #333; margin: 0; }
.login-container { width: 100%; max-width: 400px; margin: 100px auto; padding: 40px; background: white; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.dashboard-container { max-width: 1200px; margin: 30px auto; padding: 20px; background: white; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
h1, h2 { color: #215b87; }
.error { color: #e74c3c; background: #fadbd8; border: 1px solid #e74c3c; padding: 10px; border-radius: 5px; margin-bottom: 15px; }
.success { color: #27ae60; background: #d4efdf; border: 1px solid #27ae60; padding: 10px; border-radius: 5px; margin-bottom: 15px; }
form { display: flex; flex-direction: column; }
label { margin-bottom: 5px; font-weight: 600; }
input[type="text"], input[type="password"], textarea, select { padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; font-size: 1rem; }
textarea { resize: vertical; min-height: 100px; }
button { padding: 12px 20px; border: none; border-radius: 5px; cursor: pointer; font-size: 1rem; font-weight: 600; transition: background 0.3s ease; }
.btn-primary { background-color: #215b87; color: white; }
.btn-primary:hover { background-color: #3a7ca8; }
.btn-danger { background-color: #e74c3c; color: white; }
.btn-danger:hover { background-color: #c0392b; }
.btn-secondary { background-color: #7f8c8d; color: white; }
.btn-secondary:hover { background-color: #95a5a6; }
.header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 20px; }
.header a { text-decoration: none; color: #3a7ca8; font-weight: 600; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { border: 1px solid #ddd; padding: 12px; text-align: left; }
th { background-color: #f2f2f2; font-weight: 700; }
td .actions { display: flex; gap: 10px; }
.actions form { margin: 0; }
.actions button { padding: 5px 10px; font-size: 0.9rem; }