.container.header {
    position: sticky;
    top: 6px;
    z-index: 1000;
}

.section.header {
    padding: 24px;
    background-color: var(--focus-background);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    position: relative;
    z-index: 1001;
}

.header.content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.section.header.scrolled {
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.1);
}

.header.logo {
    height: 48px;
    transition: height 0.3s ease;
}

.header.logo.scrolled {
    height: 32px;
}

.header.action-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
    color: var(--primary-black);
    background-color: var(--primary-white);
    padding: 8px;
    border-radius: 100%;
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.action-wrapper:hover {
    color: var(--secondary-white);
    background-color: var(--primary-black);
}

.header.action {
    color: inherit;
    width: 16px;
    height: 16px;
}