/* admin/assets/style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background: #f0f2f5; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Login */
.login-box { max-width: 400px; margin: 50px auto; background: white; padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.login-box h1 { text-align: center; margin-bottom: 20px; color: #333; }

/* Form */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input { width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px; }
button { background: #4CAF50; color: white; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; }
button:hover { background: #45a049; }
a { color: #2196F3; text-decoration: none; margin-left: 10px; }

/* Alert */
.alert { padding: 10px; border-radius: 4px; margin-bottom: 15px; }
.alert.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Dashboard */
.header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.user-info span { margin-right: 15px; font-weight: bold; }
.btn { padding: 5px 10px; border-radius: 3px; color: white; text-decoration: none; }
.btn-logout { background: #f44336; }
.btn-primary { background: #4CAF50; }
.btn-view { background: #2196F3; }
.btn-delete { background: #f44336; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card { background: white; padding: 20px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.stat-card h3 { color: #666; font-size: 14px; margin-bottom: 5px; }
.stat-card p { font-size: 24px; font-weight: bold; }

table { width: 100%; background: white; border-collapse: collapse; border-radius: 5px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
th, td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; }
th { background: #4CAF50; color: white; }
tr:hover { background: #f5f5f5; }
input[type="text"] { width: 100%; padding: 5px; border: 1px solid #ddd; border-radius: 3px; }