﻿body {
    font-family: Onest, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body a {
    text-decoration: none;
}

body ul {
    list-style: none;
}

header {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    border-bottom: 1px solid #ccc;
}

.header-logo {
    flex-grow: 1;
    width: 33%;
}

.header-logo img {
    height: 60px;
}

.header-title {
    font-size: 24px;
    font-weight: bold;
    flex-grow: 1;
    text-align: center;
    color: #014898;
    width: 400px;
}

.header-lang {
    flex-grow: 1;
    width: 33%;
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: end;
}

.header-lang select {
    margin-right: 50px;
    border: none;
}
.header-lang img {
    height: 20px;
    width: 20px;
}

.header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.logout-icon {
    width: 20px;
    height: 20px;
}

.logout-username {
    margin-left: 10px;
    font-weight: bold;
}

.container {
    flex-grow: 1;
    display: flex;
}

.navbar {
    background: #014898;
    max-width: 150px;
    min-width: 150px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding: 20px;
    font-family: Onest, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 13px;
}

.navbar a {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
}

.navbar a img {
    margin-right: 8px;
}

.dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toggle{
    cursor: pointer;
    margin-left: 8px;
    font-size: 10px;
    color: #FFFFFF;
    /*transition: transform 0.3s ease;*/
}

.rotate-toggle {
    transform: rotate(180deg);
}

.dropdown-toggle {
    cursor: pointer;
    width: fit-content;
}

.dropdown-content {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-left: 10px;
}

.dropdown-item {
    padding: 10px;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: #01307b;
}

.second-dropdown-toggle{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.second-dd-link  {
    font-size: 11px;
    font-family: Onest, sans-serif;
}

/*.active-tab{*/
/*    !*background-color: #00245e;*!*/
/*    font-size: 14px;*/
/*}*/

.badge-count {
    color: red;
    margin-left: 10px;
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
}
