Learn by Directing AI
All materials

style.css

cssstyle.css
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f5f0e8; color: #333; }

.login-container { max-width: 400px; margin: 80px auto; background: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); overflow: hidden; }
.login-header { background: #4a6741; color: white; padding: 30px; text-align: center; }
.login-header h1 { font-size: 28px; margin-bottom: 5px; }
.login-header .tagline { font-size: 14px; opacity: 0.9; }
.login-header .subtitle { font-size: 12px; opacity: 0.7; margin-top: 10px; text-transform: uppercase; letter-spacing: 1px; }
.login-form { padding: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: #555; }
.form-group input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; }
.btn-login { width: 100%; padding: 12px; background: #c9a84c; color: white; border: none; border-radius: 4px; font-size: 16px; cursor: pointer; font-weight: 600; }
.btn-login:hover { background: #b8943e; }
.error-message { background: #fde8e8; color: #9b1c1c; padding: 10px; border-radius: 4px; margin-bottom: 15px; font-size: 14px; }
.footer-text { text-align: center; padding: 15px; font-size: 12px; color: #999; }

.top-nav { background: #4a6741; color: white; padding: 15px 30px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-size: 20px; font-weight: bold; }
.nav-links a { color: white; text-decoration: none; margin: 0 15px; opacity: 0.8; }
.nav-links a.active { opacity: 1; border-bottom: 2px solid #c9a84c; padding-bottom: 2px; }
.nav-user { font-size: 14px; }
.nav-user a { color: #c9a84c; text-decoration: none; }

.content { max-width: 900px; margin: 30px auto; padding: 0 20px; }
.content h2 { color: #4a6741; margin-bottom: 20px; }

.data-table { width: 100%; border-collapse: collapse; background: white; border-radius: 4px; overflow: hidden; box-shadow: 0 1px 5px rgba(0,0,0,0.1); }
.data-table th { background: #4a6741; color: white; padding: 12px 15px; text-align: left; font-size: 13px; text-transform: uppercase; }
.data-table td { padding: 10px 15px; border-bottom: 1px solid #eee; font-size: 14px; }
.data-table tr:hover { background: #f9f6f0; }

.inline-form { display: flex; gap: 5px; }
.qty-input { width: 80px; padding: 5px; border: 1px solid #ddd; border-radius: 3px; }
.btn-order { padding: 5px 15px; background: #c9a84c; color: white; border: none; border-radius: 3px; cursor: pointer; font-size: 13px; }

.status-pending { color: #d97706; font-weight: 600; }
.status-confirmed { color: #059669; font-weight: 600; }
.status-shipped { color: #2563eb; font-weight: 600; }
.status-delivered { color: #4a6741; font-weight: 600; }