body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f4f6f9; color: #333; margin: 0; padding: 0; }
.auth-container { max-width: 400px; margin: 80px auto; background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
form label { display: block; margin: 10px 0 5px; font-weight: 600; }
form input, form select, form textarea { width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; }
button { background: #2e7d32; color: #fff; padding: 12px; width: 100%; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; font-weight: bold; }
button:hover { background: #1b5e20; }
.alert-success { background: #e8f5e9; color: #2e7d32; padding: 15px; border-left: 5px solid #2e7d32; margin-bottom: 15px; border-radius: 4px; }
.alert-error { background: #ffebee; color: #c62828; padding: 15px; border-left: 5px solid #c62828; margin-bottom: 15px; border-radius: 4px; }
.dashboard-wrapper { max-width: 1100px; margin: 30px auto; padding: 20px; }
header { display: flex; justify-content: space-between; align-items: center; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.btn-logout { background: #c62828; color: #fff; padding: 8px 15px; text-decoration: none; border-radius: 4px; }
.grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 15px; }
.card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); position: relative; }
.badge { background: #e8f5e9; color: #2e7d32; padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: bold; }
.btn-watch, .btn-view { display: inline-block; background: #0277bd; color: #fff; padding: 8px 12px; text-decoration: none; border-radius: 4px; margin-top: 10px; font-size: 14px; }
.styled-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); margin-top: 15px; }
.styled-table th, .styled-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #edf2f7; }
.styled-table th { background: #f8fafc; font-weight: 600; }