@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* BẢNG MÀU GỐC (Dùng chung cho mọi trang) */
    --bgBase: #191a23;
    --bgPanel: #1e1f2b;
    --line: #4c4f6b;
    --textMain: rgba(235, 238, 248, 0.92);
    --textSub: rgba(235, 238, 248, 0.45);
    
    /* MÀU NHẤN CHÍNH (Xanh Teal) */
    --teal: #18c7b6;
    --tealFg: rgba(24, 199, 182, 0.95);
    --tealBg: rgba(24, 199, 182, 0.1);
    --tealBgHover: rgba(24, 199, 182, 0.2);
    
    /* MÀU CẢNH BÁO (Đỏ) */
    --red: #ff4d4d;
    --redFg: rgba(255, 77, 77, 0.95);
    --hoverBg: rgba(255, 255, 255, 0.03);

    /* CẤU HÌNH KHỐI (Dùng cho Bot) */
    --r-panel: 10px;
    --r-btn: 6px;
    --msg-user: rgba(255,255,255,0.05);
    --msg-bot: rgba(24, 199, 182, 0.1);
    --msg-admin: rgba(24, 199, 182, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bgBase);
    color: var(--textMain);
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s, color 0.3s;
}

/* THANH CUỘN (SCROLLBAR) TÀNG HÌNH DÙNG CHUNG */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bgBase); }
::-webkit-scrollbar-thumb { background: #363746; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--line); }
::-webkit-scrollbar-button, ::-webkit-scrollbar-corner { display: none !important; }

/* ẨN MŨI TÊN TĂNG GIẢM CỦA Ô NHẬP SỐ */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=number] { 
    -moz-appearance: textfield; 
}

/* HIỆU ỨNG LÀM MỜ NỀN CHUNG */
.backdrop-blur-md { 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
}