﻿/* ============================
   BASE (reset, body, helpers)
   ============================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--platforma-font-family);
    line-height: 1.5;
    color: var(--platforma-gray-700);
    background: var(--platforma-gray-50);
}

/* Bruges når sidebar/modals er åbne */
.platforma-no-scroll {
    overflow: hidden;
}

/* Lille helper til grå tekst */
.platforma-text-muted {
    color: var(--platforma-gray-500);
    font-size: var(--platforma-text-sm);
}
