﻿/* Grundläggande återställning */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Wrapper för centrerad kolumn */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

a.button {
    display: inline-block;
    background-color: #003366;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    a.button:hover {
        background-color: #0055a5;
    }

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 3rem;
}

button {
    padding: 0.5rem 1.5rem;
    background-color: #93C01B;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.post-checkbox {
    margin-top: 7px;
    float: left;
}

