.header.default {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: var(--default-border);
    background-color: var(--focus-background);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header.logo-wrapper {
    width: 4rem;
    aspect-ratio: 1 / 1;
    min-width: 48px;
    min-height: 48px;
    max-width: 56px;
    max-height: 56px;
    background-image: url('../assets/brand/CertPro 512px.png'); 
    background-size: cover;
    background-position: center;
    border-radius: 100%;
    border: 0.5px solid var(--primary-accent)
}

.header.action-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.header.button {
    padding: 12px 18px;
    border: 0px;
    border-radius: var(--s-border);
    background-color: var(--primary-accent);
    color: var(--primary-white);
    margin: 0;
}

.header.button:hover {
    background-color: var(--secondary-accent);
}

.header.list-wrapper {
    display: flex;
    flex-direction: row;
    gap: 12px;
    list-style: none;
}

.header.list-item {
 color: var(--secondary-accent);
 font-weight: 400;
}