#readme-button {
    display: none !important;
}

/* Smaller logo on welcome screen */
img[src*="/logo?theme="] {
    max-height: 4rem !important;
    width: auto !important;
}

/* CSV download button — targets markdown links pointing to our download endpoint */
a[href*="/api/download/"] {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    background: hsl(150 50% 58%);
    color: hsl(0 0% 100%) !important;
    text-decoration: none !important;
    transition: opacity 0.15s ease;
}

a[href*="/api/download/"]:hover {
    opacity: 0.85;
}

a[href*="/api/download/"]::before {
    content: "\2913  ";
}

