/*
Theme Name: Check je Stem
Description: Custom WordPress theme for Check je Stem voting guide
Version: 1.0.0
Author: Webdelta
Author URI: https://webdelta.nl
License: GPL v2 or later
Text Domain: checkjestem
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--bodyfont), sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-background);
}
#page {
    background-color: #fff;
}
h1, h2, h3, h4, h5 {
    font-family: var(--headingfont), sans-serif;
    color: var(--text-color);
}
/* WordPress admin bar adjustment */
.admin-bar {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar {
        margin-top: 46px;
    }
} 