/* ==========================================
   Cashflow Management System
   Global Styles
========================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #dc2626;
    --info: #0ea5e9;

    --dark: #1e293b;
    --gray-900: #0f172a;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;

    --white: #ffffff;

    --radius: 12px;
    --shadow: 0 8px 24px rgba(0,0,0,.08);

    --transition: .3s ease;
}

/* ==========================================
   Reset
========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f8fafc;
    color: var(--gray-700);
}

/* ==========================================
   Links
========================================== */

a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

/* ==========================================
   Images
========================================== */

img {
    max-width: 100%;
    display: block;
}

/* ==========================================
   Buttons
========================================== */

.btn {
    border-radius: 10px;
}

/* ==========================================
   Cards
========================================== */

.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ==========================================
   Utilities
========================================== */

.shadow-soft {
    box-shadow: var(--shadow);
}

.rounded-xl {
    border-radius: var(--radius);
}

.text-primary-custom {
    color: var(--primary);
}

.bg-primary-custom {
    background: var(--primary);
    color: #fff;
}