/* ===================================================
   Åsele Kommun – Troman CSS
   Snygg layout för undersidor, rubriker vinröda, text svart
   =================================================== */

/* =========================
   Grundinställningar
   ========================= */
body, div, p, span, ul, ol, li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #000000; /* svart text */
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* =========================
   Rubriker
   ========================= */
h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
    color: #8B0000; /* vinröd rubrik */
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }

/* =========================
   Länkar
   ========================= */
a {
    color: #000000; /* svart länk */
    text-decoration: none;
}

a:hover {
    color: #8B0000; /* vinröd hover */
    text-decoration: underline;
}

/* =========================
   Knappar
   ========================= */
button,
input[type="button"],
input[type="submit"] {
    background-color: #8B0000; /* vinröd bakgrund */
    color: #ffffff; /* vit text */
    border: none;
    padding: 8px 16px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background-color: #a10000; /* mörkare vinröd hover */
}

/* =========================
   Tabeller
   ========================= */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    margin-bottom: 1em;
}

th {
    background-color: #8B0000; /* vinröd rubrik */
    color: #ffffff;
    font-weight: bold;
    text-align: left;
    padding: 8px;
}

td {
    border-bottom: 1px solid #dddddd;
    padding: 8px;
    color: #000000; /* svart text */
}

/* Alternating row färg */
tr:nth-child(even) td {
    background-color: #f9f9f9;
}

/* =========================
   Sektioner / boxar
   ========================= */
.section {
    margin-bottom: 1.5em;
    padding: 10px 0;
    border-bottom: 1px solid #dddddd;
}

/* =========================
   Sidhuvud / logga
   ========================= */
.header,
.site-header {
    background-color: #ffffff;
    padding: 15px;
}

/* =========================
   Mobilanpassning
   ========================= */
@media (max-width: 768px) {
    body { font-size: 15px; }
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    table, thead, tbody, th, td, tr {
        display: block;
    }
    th { display: none; }
    td { border: none; padding: 8px 0; }
}
