.explore-button {
    cursor: pointer;
    position: relative;
    background: #000;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: auto;
    height: 2rem;
    max-height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.dark .explore-button {
    background: #fff;
    color: #000;
}

.explore-button svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.explore-button svg circle {
    fill: currentColor;
}

.explore-button svg path {
    stroke: #000;
}

.dark .explore-button svg path {
    stroke: #fff;
}

html.dark {
    color-scheme: dark;
}

html.dark body {
    background-color: #000;
    color: #fff;
}
