/* Taskky Onboarding Tour Styles */

.taskky-tour-step {
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.taskky-tour-step .shepherd-header {
    padding: 1.5rem 1.5rem 0.5rem;
}

.taskky-tour-step .shepherd-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.taskky-tour-step .shepherd-text {
    padding: 0.5rem 1.5rem 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.taskky-tour-step .shepherd-footer {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.shepherd-button {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.shepherd-button-primary {
    background-color: #3b82f6;
    color: white;
}

.shepherd-button-primary:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
}

.shepherd-button-secondary {
    background-color: #f3f4f6;
    color: #6b7280;
}

.shepherd-button-secondary:hover {
    background-color: #e5e7eb;
}

.shepherd-cancel-icon {
    color: #9ca3af;
    transition: color 0.2s;
}

.shepherd-cancel-icon:hover {
    color: #6b7280;
}

.shepherd-modal-overlay-container {
    background-color: rgba(0, 0, 0, 0.5);
}

.shepherd-element {
    z-index: 9999;
}
