
* {
    font-family: "Open Sans", sans-serif;
}
body{
    margin: unset;
}

header {
    /*background-color: #037dc6;*/
    padding: 0;
    margin-bottom: 75px;
}

header a {
    color: white;
    text-decoration: none;
    font-size: 24px;
}
.top-row {
    background-color: #037dc6;
    height: 25px; /* Adjust height as needed */
}
.bottom-row{
    background-color: white;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding-top: 75px;
}

.tab-content {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.logo-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: 100px;
    margin-left: 15% !important;
    transition: margin-left 0.3s ease-in-out;
}

@media (max-width: 1158px) {
    .logo-container {
        margin-left: 10px!important;
    }
}