@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --ora1: #FFCF1B; --ora2: #FF9F1B; --ora3: #FF881B; --ora4: #E06B00;
  --bg: #FFF8F0; --surface: #FFFFFF; --surface2: #FFF3E4;
  --border: rgba(255,136,27,0.18); --border-s: rgba(255,136,27,0.4);
  --text: #1A0F00; --text2: #6B4B2A; --text3: #B07B4A;
  --green: #1B9E6A; --green-bg: #E8FAF4;
  --red: #D63B3B; --red-bg: #FDEAEA;
  --blue: #2563EB; --blue-bg: #EEF3FF;
  --r: 12px; --r-sm: 8px;
  --shadow: 0 2px 12px rgba(255,136,27,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; font-size: 14px; }

/* --- GLOBAL LAYOUT --- */
.app-container { display: flex; min-height: 100vh; }
.main-content { margin-left: 250px; flex: 1; min-height: 100vh; display: flex; flex-direction: column; }
.content-body { padding: 24px 28px; flex: 1; }

/* --- SIDEBAR --- */
.sidebar { width: 250px; min-height: 100vh; background: #fff; border-right: 1px solid var(--border); display: flex; flex-direction: column; position: fixed; top: 0; left: 0; z-index: 100; }
.sidebar-header { padding: 24px 20px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.sidebar-logo-icon { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--ora1), var(--ora3)); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #fff; font-family: 'Space Grotesk', sans-serif; }
.sidebar-nav { padding: 12px; flex: 1; }
.nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--r-sm); cursor: pointer; color: var(--text2); font-size: 13.5px; font-weight: 500; text-decoration: none; transition: all .15s; margin-bottom: 2px; }
.nav-item:hover { background: var(--surface2); color: var(--text); }
.nav-item.active { background: linear-gradient(90deg, #FFF3D4, #FFE4C0); color: var(--ora4); font-weight: 600; }

/* --- TOPBAR --- */
.topbar { background: #fff; border-bottom: 1px solid var(--border); padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.topbar-title { font-size: 17px; font-weight: 700; color: var(--text); }

/* --- COMPONENTS --- */
.card { background: #fff; border-radius: var(--r); padding: 20px; border: 1px solid var(--border); box-shadow: var(--shadow); margin-bottom: 20px; }
.btn { padding: 10px 18px; border-radius: var(--r-sm); border: none; cursor: pointer; font-size: 13.5px; font-weight: 600; transition: all .15s; display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.btn-primary { background: linear-gradient(90deg, var(--ora2), var(--ora3)); color: #fff; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* --- FOOTER --- */
.footer { padding: 16px 28px; text-align: center; font-size: 12px; color: var(--text3); border-top: 1px solid var(--border); background: #fff; }