<style>
body {
    background-color: white;
    /* Bakgrundsfärg */
    font-size: 100%;
    /* Grundtextstorlek */
}

p {
    font-size: 1em;
    /* Textstorlek relativ till body */
}

/* Header-styling */
#header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #ffffff;
}

#logo img {
    width: 75px;
    /* Logobredd */
    height: auto;
    /* Behåll bildproportioner */
}

#logoTitle {
    margin-left: 20px;
    font-size: 24px;
    /* Textstorlek för logotitel */
}

#logoTitle .sn {
    color: gray;
    /* Färg för 'SN' */
}

#logoTitle .utryckning {
    color: black;
    /* Färg för 'UTRYCKNING' */
}

/* Meny-styling */
#menu {
    margin-left: auto;
    /* Placera menyn till höger */
}

/* Karta-styling */
#map {
    height: 300px;
    z-index: 1;
}

/* Tabell-styling */
#eventsTable {
    width: 100%;
    border-collapse: collapse;
}

#eventsTable th,
#eventsTable td {
    border: 1px solid black;
    padding: 5px;
}

/* Tabellcontainer för scroll */
#tableContainer {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
}

/* Hamburgermeny-knapp */
#menuButton {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 30px;
    background-color: black;
    border: none;
    padding: 5px;
}

#menuButton span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
}

/* Sorteringsmeny */
#sortMenu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 2000;
}

/* Responsiv design för små skärmar */
@media only screen and (max-width: 600px) {
    body {
        font-size: 120%;
        /* Större text på små skärmar */
    }
}

</style>