:root {
    --score-high: #4ade80;
    --score-mid: #facc15;
    --score-low: #f87171;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--platea-font-ui, "Segoe UI", "Helvetica Neue", Arial, sans-serif);
    background-color: #141414;
    color: #fff;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #000;
}

main {
    padding: 2rem;
}

/* ── Material Design heart toggle (outline/filled) ─────────────── */
.md-heart { vertical-align: -0.15em; }
.md-heart-filled { display: none; }
.is-liked .md-heart-outline { display: none; }
.is-liked .md-heart-filled { display: inline-block; }

h2 {
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.4rem;
}

/* Prevents long unbroken strings from overflowing their container */
.user-content {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    min-width: 0;
}
