.l-header {
    background-color: #fff;
    box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.l-header__container {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
}

.l-header__logo {
    width: 13rem;
}

.l-header__nav {
    flex-grow: 1;
}

.l-header__nav menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.l-header__nav a {
    display: block;
    padding: 0.7rem;
    font-weight: 600;
    color: #052c52;
    text-decoration: none;
}

.l-header__nav a:hover {
    background-color: var(--color-blue);
    color: #fff;
}

.l-header__user {
    background-color: var(--color-blue);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
}

.l-header__user a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.flash {
    padding: 1rem;
    margin-bottom: 1rem;
}

.flash--error {
    background-color: #f8d7da;
    color: #721c24;
}

.flash--success {
    background-color: #d4edda;
    color: #155724;
}

.filter-list {
    list-style: none;
    max-height: 10rem;
    overflow-y: scroll;
    overflow-x: hidden;
    border: 1px solid #ccc;
    padding: 0;
}

.filter-list span {
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    border-radius: 100%;
}

.filter-list li {
   padding: 0.3rem;
   border-bottom: 1px solid #e2e2e2;
}