.background { width: 100%; height: 100vh; background: #f5f4f0; overflow: hidden; display: flex; flex-direction: column; } .dashboard { padding: 10px 20px; display: flex; align-items: center; gap: 16px; background: #fff; border-bottom: 1px solid #ede8e0; flex-shrink: 0; } .dashboard-title { font-size: 0.8rem; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin: 0; white-space: nowrap; } .dashboard-cards { display: flex; gap: 8px; } .dashboard-card { display: flex; align-items: center; gap: 8px; padding: 6px 14px; background: #fdf6ed; border: 1.5px solid #ede8e0; border-radius: 20px; text-decoration: none; color: inherit; transition: border-color 0.15s ease, background 0.15s ease; cursor: pointer; } .dashboard-card:hover { border-color: #d4a574; background: #faf0e4; } .card-icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; color: #d4a574; flex-shrink: 0; } .card-content h2 { font-size: 0.82rem; font-weight: 600; color: #2c2c2c; margin: 0; } .card-content p { display: none; } .card-arrow { display: none; } .outlet-wrapper { flex: 1; overflow: hidden; display: flex; flex-direction: column; }