﻿.navigation-component {
    display: flex;
    height: 64px;
    gap: 32px;
    flex-direction: row;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-light-background);
    box-shadow: var(--shadow-small);
    padding: 0 32px 0 32px;
}

.navigation-component-links-container {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

@media (min-width: 1200px) {
    .navigation-component {
        flex-direction: column;
        width: 64px;
        height: unset;
        padding: 32px 0 32px 0;
        gap: 32px;
    }

    .navigation-component-links-container {
        flex-direction: column;
    }
}
