/* admin/assets/style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #f4f6f9; color: #333; }
a { text-decoration: none; color: #007cba; }

/* Login Page */
.login-page { display: flex; align-items: center; justify-content: center; height: 100vh; background: #007cba; }
.login-container { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); width: 100%; max-width: 400px; }
.login-container h1 { margin-bottom: 20px; text-align: center; color: #007cba; }
.login-container input { width: 100%; padding: 12px; margin: 10px 0; border: 1px solid #ddd; border-radius: 6px; font-size: 16px; }
.login-container button { width: 100%; padding: 12px; background: #007cba; color: white; border: none; border-radius: 6px; font-size: 16px; cursor: pointer; }
.login-container button:hover { background: #005a87; }
.error { color: red; margin: 10px 0; text-align: center; }

/* Dashboard */
.header { background: #007cba; color: white; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.header h1 { font-size: 20px; }
.btn { display: inline-block; padding: 8px 16px; background: #007cba; color: white; border-radius: 6px; font-size: 14px; }
.btn:hover { background: #005a87; }
.btn-danger { background: #d32f2f; }
.btn-danger:hover { background: #b71c1c; }

.container { max-width: 1200px; margin: 20px auto; padding: 0 20px; }
.table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.table th, .table td { padding: 12px; text-align: left; border-bottom: 1px solid #eee; }
.table th { background: #f0f0f0; }
.table tr:hover { background: #f9f9f9; }

.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 6px; }
.form-group textarea { height: 200px; resize: vertical; }

.actions { display: flex; gap: 10px; }