/* Hide the logo image/icon (keep default Material styling, just remove logo) */
.md-logo {
    display: none !important;
}

/* Header CTA button */
.bwa-cta {
    margin-left: 0.5rem;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    background-color: var(--md-accent-fg-color);
    color: var(--md-primary-bg-color);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    order: 3;
    /* Position before search (which is order: 4) */
}

.bwa-cta:hover {
    opacity: 0.9;
}

/* Ensure search appears after CTA button */
.md-search {
    order: 4;
}

/* Override accent color for both light and dark modes */
[data-md-color-scheme="default"],
[data-md-color-scheme="slate"] {
    --md-accent-fg-color: #cc785c;
    --md-accent-fg-color--transparent: #cc785c1a;
}

/* Notification Pill */
.new-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background-color: var(--md-accent-fg-color--transparent);
    color: var(--md-text-color);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid var(--md-accent-fg-color);
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: flex;
    width: fit-content;
    margin-inline: auto;

}