:root{--primary-orange: #C04A1B;--primary-hover: #A03D15;--text-dark: #222222;--text-muted: #666666;--border-light: #EEEEEE;--bg-white: #FFFFFF;--bg-light: #F9F9F9;--sidebar-bg: #FFFFFF;--sidebar-width: 280px;--header-height: 80px;--shadow-sm: 0 2px 8px rgba(0, 0, 0, .04);--shadow-md: 0 10px 30px rgba(0, 0, 0, .08);--radius-md: 12px;--radius-lg: 16px;--dropdown-bg: rgba(255, 255, 255, .98);--dropdown-hover: #F2F2F2}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.dropdown-menu.show{display:block;animation:fadeInDown .2s ease-out}.dropdown-item{display:block;padding:10px 20px;color:var(--text-dark);text-decoration:none;font-size:14px;transition:background-color .2s}.dropdown-item:hover{background-color:var(--dropdown-hover);color:var(--primary-orange)}.dropdown-divider{height:1px;margin:8px 0;overflow:hidden;background-color:var(--border-light)}.notification-badge{position:absolute;top:-5px;right:-5px;background-color:#ff4d4d;color:#fff;font-size:10px;font-weight:700;height:18px;width:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;border:2px solid white}.form-group{margin-bottom:20px}.form-label{display:block;margin-bottom:8px;font-weight:500;color:var(--text-dark);font-size:14px}.form-control{width:100%;padding:12px 15px;border:1px solid var(--border-light);border-radius:var(--radius-md);font-size:14px;transition:border-color .2s}.form-control:focus{outline:none;border-color:var(--primary-orange)}.btn-primary{background-color:var(--primary-orange);color:#fff;border:none;padding:14px 30px;border-radius:50px!important;font-weight:600;cursor:pointer;transition:background-color .2s;text-decoration:none;display:inline-flex;align-items:center;justify-content:center}.btn-primary:hover{background-color:var(--primary-hover)}.switch{position:relative;display:inline-block;width:50px;height:26px}.switch input{opacity:0;width:0;height:0}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s;border-radius:34px}.slider:before{position:absolute;content:"";height:18px;width:18px;left:4px;bottom:4px;background-color:#fff;transition:.4s;border-radius:50%}input:checked+.slider{background-color:var(--primary-orange)}input:checked+.slider:before{transform:translate(24px)}.modal-content{border:none;border-radius:var(--radius-lg);box-shadow:0 20px 50px #00000026}.modal-header{border-bottom:1px solid var(--border-light);padding:25px 30px}.modal-title{font-weight:700;color:var(--text-dark)}.modal-body{padding:30px}.modal-footer{border-top:1px solid var(--border-light);padding:20px 30px}.btn-action{width:32px;height:32px;display:inline-flex;align-items:center;justify-content:center;border-radius:8px;border:1px solid #EEE;background:#fff;cursor:pointer;transition:all .2s;margin-right:5px}.btn-edit{color:#3498db}.btn-edit:hover{background-color:#ebf5fb;border-color:#3498db}.btn-delete{color:#e74c3c}.btn-delete:hover{background-color:#fdedec;border-color:#e74c3c}*{margin:0;padding:0;box-sizing:border-box;font-family:Inter,sans-serif}body{background-color:var(--bg-light);color:var(--text-dark)}.admin-wrapper{display:flex;min-height:100vh}.admin-sidebar{width:var(--sidebar-width);background-color:var(--sidebar-bg);border-right:1px solid var(--border-light);position:fixed;height:100vh;left:0;top:0;z-index:100;display:flex;flex-direction:column}.sidebar-header{height:var(--header-height);display:flex;align-items:center;padding:0 30px;border-bottom:1px solid var(--border-light)}.sidebar-logo{height:40px}.sidebar-menu{flex:1;padding:30px 20px;overflow-y:auto}.menu-category{font-size:12px;text-transform:uppercase;color:#999;letter-spacing:.5px;margin-bottom:15px;padding-left:15px;font-weight:600}.menu-item{display:flex;align-items:center;gap:12px;padding:12px 15px;margin-bottom:5px;color:var(--text-muted);text-decoration:none;border-radius:var(--radius-md);transition:all .2s ease;font-weight:500;font-size:15px}.menu-item svg{width:20px;height:20px;stroke-width:2}.menu-item:hover{background-color:#fff2ed;color:var(--primary-orange)}.menu-item.active{background-color:var(--primary-orange);color:#fff}.sidebar-footer{padding:20px;border-top:1px solid var(--border-light)}.user-profile-mini{display:flex;align-items:center;gap:12px;padding:10px;border-radius:var(--radius-md);transition:background .2s;cursor:pointer}.user-profile-mini:hover{background-color:var(--bg-light)}.user-avatar{width:40px;height:40px;border-radius:50%;background-color:#eee;object-fit:cover}.user-info h4{font-size:14px;font-weight:600;color:var(--text-dark)}.user-info p{font-size:12px;color:var(--text-muted)}.admin-main{flex:1;margin-left:var(--sidebar-width);display:flex;flex-direction:column}.admin-header{height:var(--header-height);background-color:var(--bg-white);border-bottom:1px solid var(--border-light);display:flex;align-items:center;justify-content:space-between;padding:0 40px;position:sticky;top:0;z-index:90}.header-title h1{font-size:24px;font-weight:700;color:var(--text-dark)}.header-actions{display:flex;align-items:center;gap:20px}.btn-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:50%;border:1px solid var(--border-light);background:#fff;color:var(--text-muted);cursor:pointer;transition:all .2s}.btn-icon:hover{border-color:var(--primary-orange);color:var(--primary-orange);background-color:#fff2ed}.admin-content{flex:1;padding:40px}.dashboard-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:25px;margin-bottom:40px}.stat-card{background:#fff;border-radius:var(--radius-lg);padding:25px;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;gap:15px;transition:transform .2s,box-shadow .2s}.stat-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}.stat-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:20px;color:var(--primary-orange);background-color:#fff2ed}.stat-info h3{font-size:28px;font-weight:700;color:var(--text-dark);margin-bottom:4px}.stat-info p{font-size:14px;color:var(--text-muted)}.section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:25px}.section-header h2{font-size:20px;font-weight:700;color:var(--text-dark)}.card-container{background:#fff;border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);padding:25px}.table-responsive{width:100%;overflow-x:auto}.custom-table{width:100%;border-collapse:collapse}.custom-table th{text-align:left;padding:15px 20px;font-size:13px;font-weight:600;color:#999;text-transform:uppercase;border-bottom:1px solid var(--border-light)}.custom-table td{padding:20px;font-size:15px;color:var(--text-dark);border-bottom:1px solid var(--border-light)}.custom-table tr:last-child td{border-bottom:none}.status-badge{padding:6px 12px;border-radius:20px;font-size:12px;font-weight:600;display:inline-block}.status-active{background-color:#e6f7ed;color:#00a650}.status-pending{background-color:#fff8e6;color:#ffab00}.admin-footer{padding:25px 40px;border-top:1px solid var(--border-light);display:flex;justify-content:space-between;align-items:center;background-color:#fff;margin-top:auto}.admin-footer p{font-size:13px;color:var(--text-muted)}.footer-links{display:flex;gap:20px}.footer-links a{font-size:13px;color:var(--text-muted);text-decoration:none;transition:color .2s}.footer-links a:hover{color:var(--primary-orange)}
