body {
    background: #e5e5e5;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
    color: #000;
}

/* A4 + 100px */
.page-wrapper {
    width: calc(210mm + 100px);
    min-height: 297mm;
    background: #ffffff;
    margin: 40px auto;
    padding: 30px;
    box-shadow:
        0 0 20px rgba(0,0,0,0.15),
        0 0 60px rgba(0,0,0,0.05);
}

/* Header */
.site-header {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px;
    display: block;
}

/* Röda streck */
.header-divider {
    width: 100%;
    height: 1px;
    background: #c4002f;
    margin: 15px 0 15px 0;
}

.header-divider--tight {
    margin: 10px 0 15px 0;
}

/* Toppmeny (horisontell) */
.topmenu-wrapper {
    padding: 8px 0;
}

.topmenu-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.topmenu-wrapper a {
    text-decoration: none;
    color: #000;
    font-size: 12pt;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    padding: 4px 0;
}

.topmenu-wrapper a:hover {
    color: #c4002f;
    text-decoration: underline;
}

.topmenu-wrapper .current > a,
.topmenu-wrapper a.active {
    color: #c4002f;
}

/* Brödsmulor */
.breadcrumbs-wrapper {
    margin-bottom: 25px;
    font-size: 12pt;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    background: none;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li + li:before {
    content: "›";
    padding: 0 8px;
    color: #666;
}

.breadcrumb a {
    text-decoration: none;
    color: #000;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #c4002f;
}

/* Ny tvåkolumnslayout */
.content-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* Extra meny-panel */
.right-panel {
    width: 260px;               /* justera vid behov */
    border-left: 1px solid #ddd;
    padding-left: 20px;
}
/* Avskiljare för högermeny */
.right-panel-divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 0 0 15px 0;
}

/* Standard-stil för listor i extra menyn */
.right-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-panel li {
    margin-bottom: 8px;
}

.right-panel a {
    text-decoration: none;
    color: #000;
    font-size: 12pt;
    font-weight: 600;
}

.right-panel a:hover {
    color: #c4002f;
    text-decoration: underline;
}

/* Formulär */
input, button {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
}

/* Footer */
.site-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 12pt;
}

/* Responsiv */
@media (max-width: 1100px) {
    .page-wrapper {
        width: 95%;
        min-height: auto;
        padding: 20px;
    }

    .content-grid {
        flex-direction: column;
        gap: 20px;
    }

    .right-panel {
        width: 100%;
        border-left: none;
        border-top: 1px solid #ddd;
        padding-left: 0;
        padding-top: 15px;
    }
}