.shepherd-button {
    border-radius: 8px;
    padding: 6px 16px;
    font-weight: 500;
    font-size: 14px;

    background-color: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);

    border: none;
    outline: none;
    box-shadow: none;

    transition: background-color .15s ease, color .15s ease;
}

.shepherd-button:hover,
.shepherd-button:focus,
.shepherd-button:focus-visible,
.shepherd-button:active {
    background-color: var(--mud-palette-primary-darken) !important;
    color: var(--mud-palette-primary-text) !important;
    outline: none;
    box-shadow: none;
}

.shepherd-button::-moz-focus-inner {
    border: 0;
}

.shepherd-element {
    position: relative;
    z-index: 10002;
    pointer-events: auto;

    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 12px;

    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.shepherd-target,
.shepherd-menu-focus {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;

    position: relative;
    z-index: 10001;
}

.shepherd-modal-overlay-container.shepherd-modal-is-visible
~ .shepherd-target,
.shepherd-modal-overlay-container.shepherd-modal-is-visible
~ .shepherd-menu-focus {
    filter: none !important;
    opacity: 1 !important;
}

.shepherd-target {
    pointer-events: none !important;
}



