/* Shared sidebar styles */
.sidebar { width: 260px; background: #0a1628; color: white; padding: 20px; position: fixed; height: 100vh; display: flex; flex-direction: column; z-index: 50; }
.sidebar-header { display: flex; align-items: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-logo { width: 32px; height: 32px; background: #FF8C00; border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-right: 12px; font-weight: bold; font-size: 14px; }
.sidebar-title { font-size: 1.1rem; font-weight: 600; }
.sidebar-nav { list-style: none; }
.sidebar-nav li { margin-bottom: 4px; }
.sidebar-nav a { color: rgba(255,255,255,0.6); text-decoration: none; padding: 10px 14px; border-radius: 8px; display: flex; align-items: center; transition: all 0.2s; font-size: 0.9rem; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(255,255,255,0.08); color: white; }
.sidebar-nav .icon { width: 20px; margin-right: 10px; text-align: center; }
.user-profile { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.user-info { display: flex; align-items: center; }
.user-avatar { width: 32px; height: 32px; background: #14b8a6; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 10px; font-weight: 600; font-size: 13px; }
.user-name { font-size: 0.85rem; font-weight: 500; }
.user-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.sidebar-signout { display: block; background: #dc2626; border: none; color: white; cursor: pointer; font-size: 0.8rem; font-weight: 600; padding: 10px 0; border-radius: 6px; width: 100%; margin-top: 14px; }
.sidebar-signout:hover { background: #b91c1c; }
