/* Shepherd.js custom theme */
.shepherd-theme-custom {
    background: #4f46e5;
    color: white;
    border-radius: 12px;
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.shepherd-theme-custom .shepherd-header {
    background: transparent;
    padding: 1rem 1.5rem 0;
}

.shepherd-theme-custom .shepherd-title {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
}

.shepherd-theme-custom .shepherd-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 1.5rem;
}

.shepherd-theme-custom .shepherd-footer {
    padding: 1rem 1.5rem;
    justify-content: space-between;
}

.shepherd-theme-custom .shepherd-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: background 0.2s;
}

.shepherd-theme-custom .shepherd-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.shepherd-theme-custom .shepherd-button.shepherd-button-primary {
    background: white;
    color: #4f46e5;
}

.shepherd-theme-custom .shepherd-button.shepherd-button-primary:hover {
    background: #f3f4f6;
}

.shepherd-theme-custom .shepherd-cancel-icon {
    color: white;
    opacity: 0.8;
    font-size: 1.5rem;
}

.shepherd-theme-custom .shepherd-cancel-icon:hover {
    opacity: 1;
}

/* Help button */
.help-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    z-index: 9999;
}

.help-button:hover {
    background: #4338ca;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.help-button:active {
    transform: scale(0.95);
}

.help-button svg {
    width: 24px;
    height: 24px;
}
