/* ======================================================
   GLOBAL BASE STYLES – PAKKABILL
   ====================================================== */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Base */
body {
    font-family: 'Inter', sans-serif;
    background: #f1f5f9;
    color: #1e293b;
    -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Paragraph */
p {
    margin-bottom: 0.5rem;
}

/* Links */
a {
    text-decoration: none;
    transition: 0.2s ease;
}

/* Card Base Override */
.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* Buttons */
.btn {
    border-radius: 10px;
    font-weight: 500;
    transition: 0.2s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Form Controls */
.form-control {
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* Tables */
.table {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
}

.table thead {
    background: #f8fafc;
}

/* Scrollbar (Modern subtle) */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
