:root {
    --btg-md-accent: #ce965f;
    --btg-md-black: #111111;
    --btg-md-text: #171717;
    --btg-md-muted: #68707a;
    --btg-md-bg: #faf8f5;
    --btg-md-surface: #ffffff;
    --btg-md-line: #ece7e1;
    --btg-md-radius-sm: 10px;
    --btg-md-radius-md: 14px;
    --btg-md-radius-lg: 22px;
    --btg-md-radius-xl: 28px;
    --btg-md-shadow-card: 0 12px 30px rgba(17,17,17,.055);
    --btg-md-shadow-hover: 0 16px 38px rgba(17,17,17,.09);
    --btg-md-green-bg: #eaf7e8;
    --btg-md-green-text: #287a2a;
    --btg-md-red-bg: #fdeaea;
    --btg-md-red-text: #b92323;
    --btg-md-yellow-bg: #fff5dd;
    --btg-md-yellow-text: #9a6a00;
    --btg-md-orange-bg: #fff0e4;
    --btg-md-orange-text: #b45b12;
}
.btg-md-card { background: var(--btg-md-surface); border: 1px solid var(--btg-md-line); border-radius: var(--btg-md-radius-lg); box-shadow: var(--btg-md-shadow-card); }
.btg-md-btn { border: 0 !important; border-radius: 12px !important; background: var(--btg-md-black) !important; color: #fff !important; font-weight: 750; cursor: pointer; text-decoration: none !important; display: inline-flex; align-items: center; justify-content: center; transition: transform .16s ease, background .16s ease, box-shadow .16s ease; }
.btg-md-btn:hover { background: var(--btg-md-accent) !important; transform: translateY(-1px); box-shadow: var(--btg-md-shadow-hover); }
.btg-md-input { border: 1px solid #ddd6cf !important; background: #fff !important; border-radius: 12px !important; box-shadow: none !important; }
.btg-md-status { display: inline-flex; align-items: center; border-radius: 999px; font-weight: 850; text-transform: capitalize; }
.btg-md-status.is-green { background: var(--btg-md-green-bg); color: var(--btg-md-green-text); }
.btg-md-status.is-red { background: var(--btg-md-red-bg); color: var(--btg-md-red-text); }
.btg-md-status.is-yellow { background: var(--btg-md-yellow-bg); color: var(--btg-md-yellow-text); }
.btg-md-status.is-orange { background: var(--btg-md-orange-bg); color: var(--btg-md-orange-text); }
