/* public/assets/css/global.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Righteous&display=swap');

:root {
    /* --- V1 RENK PALETİ --- */
    --bg-body: #f4f7fe;       
    --bg-card: #ffffff;       
    --bg-header: rgba(255, 255, 255, 0.9);
    --bg-sidebar: #ffffff;
    --bg-input: #f8fafc;
    
    --text-main: #2b3674;     
    --text-muted: #a3aed0;    
    
    --primary: #4318ff;       
    --secondary: #707eae;
    --success: #05cd99;
    --danger: #ee5d50;
    --warning: #ffce20;
    
    --border-color: #e0e5f2;
    --shadow-card: 0px 18px 40px rgba(112, 144, 176, 0.12);
    
    --header-height: 70px;
    --sidebar-width: 260px;
    --radius: 16px;           
}

[data-theme="dark"] {
    --bg-body: #0b1437;
    --bg-card: #111c44;
    --bg-header: rgba(17, 28, 68, 0.9);
    --bg-sidebar: #111c44;
    --bg-input: #0b1437;
    
    --text-main: #fff;
    --text-muted: #8f9bba;
    --border-color: rgba(255, 255, 255, 0.05);
    --shadow-card: none;
}

/* --- SCROLL & RESET --- */
html, body {
    width: 100%; height: 100%; margin: 0; padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden; overflow-y: auto !important;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

/* Form Elemanları */
.form-control, .form-select {
    background-color: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-main) !important;
    padding: 12px 15px; border-radius: 12px;
}
.form-control:focus { border-color: var(--primary) !important; box-shadow: none !important; }