
:root{
    --primary:#14715b;
    --border:#e5e7eb;
    --text:#111827;
    --muted:#6b7280;
    --white:#ffffff;
}

*{box-sizing:border-box;margin:0;padding:0}

body{
    font-family:Inter,system-ui,sans-serif;
    color:var(--text);
    background:#fff;
}

/* ================= LAYOUT ================= */
.app{
    display:flex;
    min-height:100vh;
}
.logo img{
    height:32px;        /* or 28px / 36px */
    width:auto;
    display:block;
}

/* ================= SIDEBAR ================= */
.sidebar{
    width:260px;
    border-right:1px solid var(--border);
    padding:20px;
    background:#14715b;
    position:fixed;
    left:0;
    top:0;
    bottom:0;
}

.logo{
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
}

.nav a{
    display:block;
    padding:10px 12px;
    border-radius:8px;
    text-decoration:none;
    color:var(--white);
    font-size:14px;
    margin-bottom:4px;
}

.nav a.active,
.nav a:hover{
    background:#ecf4f214;
}

/* ================= MAIN ================= */
.main{
    margin-left:260px;
    padding:24px 32px;
    width:100%;
}

/* ================= TOPBAR ================= */
.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:32px;
}

.desktop-actions{
    display:flex;
    gap:16px;
}

.btn{
    padding:8px 14px;
    border-radius:999px;
    border:1px solid var(--border);
    background:#fff;
    font-size:14px;
}

.btn-primary{
    background:#000;
    color:#fff;
    border:none;
}

/* ================= CONTENT ================= */
h1{
    font-size:32px;
    margin-bottom:20px;
}

.quickstart{
    max-width:520px;
}

.quickstart h2{
    font-size:20px;
    margin-bottom:8px;
}

.quickstart p{
    color:var(--muted);
    margin-bottom:16px;
}

.get-started{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:999px;
    font-weight:600;
}

/* ================= MOBILE ================= */
.mobile-topbar{
    display:none;
    height:56px;
    padding:0 16px;
    border-bottom:1px solid var(--border);
    align-items:center;
    justify-content:space-between;
    position:sticky;
    top:0;
    background:#14715b;
    z-index:1000;
}

.menu-btn{
    border:none;
    background:#f3f4f6;
    width:40px;
    height:40px;
    border-radius:10px;
    font-size:20px;
}

/* ===== Mobile Sidebar ===== */
.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.4);
    display:none;
    z-index:999;
}

.mobile-sidebar{
    position:fixed;
    top:0;
    left:-260px;
    width:260px;
    height:100%;
    background:#14715b;
    padding:20px;
    transition:.3s ease;
    z-index:1000;
}

.mobile-sidebar.open{
    left:0;
}

.mobile-overlay.show{
    display:block;
}

.mobile-sidebar .sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px){
    .sidebar{
        display:none;
    }
    .main{
        margin-left:0;
        padding:20px;
    }
    .mobile-topbar{
        display:flex;
    }
    .desktop-actions{
        display:none;
    }
}
.search-box{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 10px;
    border:1px solid #e5e7eb;
    border-radius:10px;
    background:#fafafa;
    font-size:13px;
    margin-bottom:16px;
}

.search-box input{
    border:none;
    outline:none;
    background:transparent;
    flex:1;
    font-size:13px;
}

.search-icon{
    width:16px;
    height:16px;
    stroke:#6b7280;
    fill:none;
    stroke-width:2;
}

.kbd{
    font-size:11px;
    padding:2px 6px;
    border:1px solid #d1d5db;
    border-radius:6px;
    color:#6b7280;
    background:#fff;
    white-space:nowrap;
}
.app-footer{
    padding:12px 24px;
    text-align:right;
    font-size:13px;
    color:#6b7280;
    border-top:1px solid #e5e7eb;
    background:#fff;
}
